-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 984 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
{
"name": "image-compressor",
"private": true,
"packageManager": "pnpm@7.13.2",
"volta": {
"node": "16.17.0"
},
"devDependencies": {
"@nrwl/eslint-plugin-nx": "15.5.1",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "8.20.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-simple-import-sort": "^8.0.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^13.1.0",
"nx": "15.5.1",
"prettier": "^2.8.3",
"typescript": "^4.9.4"
},
"lint-staged": {
"*.{json,md,yml}": "prettier -w"
},
"scripts": {
"prepare": "is-ci || husky install",
"pre-commit": "npx lint-staged",
"format": "nx run-many --target format",
"lint": "nx run-many --target lint",
"build": "nx run-many --target build",
"docker:build": "nx run-many --target docker:build",
"dev": "nx run-many --parallel 3 --projects website,backend-api,image-processor --target dev"
}
}