-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
35 lines (35 loc) · 954 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "packagephobia",
"private": true,
"engines": {
"node": "22.x"
},
"scripts": {
"prettier": "prettier \"./**/*.ts\" \"./**/*.tsx\" --write",
"git-pre-commit": "npm run prettier && git add -A",
"lint": "npm run prettier && git diff --exit-code",
"test": "tsc && rm -f test/hardlink/link && ln test/hardlink/orig.txt test/hardlink/link && node --test"
},
"repository": "styfle/packagephobia",
"author": "styfle",
"license": "MIT",
"dependencies": {
"@vercel/postgres": "^0.8.0",
"badgen": "^3.2.3",
"ioredis": "^5.4.1",
"lru-cache": "^10.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"semver": "^7.6.0"
},
"devDependencies": {
"@types/node": "^20.12.7",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@types/semver": "^7.5.8",
"npm": "^10.4.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
},
"packageManager": "[email protected]"
}