-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
48 lines (48 loc) · 1.3 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "@gitpkg/site",
"version": "0.1.0",
"type": "module",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"website"
],
"repository": {
"type": "git",
"url": "https://github.com/EqualMa/gitpkg.git"
},
"scripts": {
"lint": "eslint --max-warnings 0",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"build-website": "npm run build -w website -- --out-dir ../public/about && npm run build-404",
"build-404": "node -e 'fs.copyFileSync(`public/about/404.html`, `public/404.html`)'",
"build": "tsc -b",
"build-all": "npm run build && npm run build-website",
"clean": "tsc -b --clean",
"prepare": "husky install"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"prettier": "3.2.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@gitpkg/core": "^1.0.0-alpha",
"@vercel/kv": "^1.0.1"
},
"volta": {
"node": "20.11.0"
}
}