-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.35 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
{
"name": "anime-database",
"version": "0.0.0",
"scripts": {
"prepare": "husky install",
"postinstall": "npm run all -- -n shared,client,server \"npm --prefix shared i\" \"npm --prefix client i\" \"npm --prefix server i\"",
"on-client": "npm run --prefix client",
"on-server": "npm run --prefix server",
"all": "concurrently -c green,blue,yellow",
"predev": "npm run build",
"dev": "npm run all -- --kill-others \"npm:on-* dev\"",
"dev:full": "npm run all -- -n docker,service \"docker-compose up\" \"npm run dev\"",
"build": "npm run --prefix shared build && npm run all \"npm:on-*(!shared) build\"",
"graphql:generate": "npm run all \"npm:on-* graphql:generate\"",
"lint": "npm run all \"npm:on-* lint\"",
"lint:fix": "npm run all \"npm:on-* lint:fix\"",
"clean": "npm run all \"npm:on-* clean\""
},
"author": "Dexter Tan",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"concurrently": "^7.6.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"rimraf": "^4.1.2"
}
}