-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
63 lines (63 loc) · 1.83 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "bangumi-list-v3",
"version": "1.0.0",
"description": "Monorepo for bangumi-list v3 server & client",
"homepage": "https://github.com/wxt2005/bangumi-list-v3",
"bugs": {
"url": "https://github.com/wxt2005/bangumi-list-v3/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/wxt2005/bangumi-list-v3.git"
},
"main": "index.js",
"scripts": {
"clean": "npm run clean --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"build:shared": "npm run build -w packages/shared",
"dev:client": "npm run dev -w packages/client",
"dev:server": "npm run dev -w packages/server",
"dev": "npm-run-all -l build:shared -p dev:server dev:client",
"lint": "eslint --ext .jsx,.js,.ts,.tsx .",
"lint:fix": "eslint --fix --ext .jsx,.js,.ts,.tsx .",
"prepare": "husky install",
"start": "npm run start -w packages/server"
},
"author": "Botao <[email protected]> (https://github.com/wxt2005)",
"license": "MIT",
"workspaces": [
"packages/shared",
"packages/server",
"packages/client"
],
"private": true,
"devDependencies": {
"@types/node": "^16.10.2",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"lint-staged": "^11.2.3",
"prettier": "^2.4.1",
"ts-node": "^10.2.1",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.11.0",
"typescript": "^4.4.3"
},
"dependencies": {
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2"
},
"engines": {
"node": ">= 16",
"npm": ">= 7"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix"
}
}