-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 2.2 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
{
"name": "@lumigo-workshop-innovator-island/root",
"private": true,
"version": "1.0.0",
"license": "MIT",
"scripts": {
"build": "nx run-many --target=build --all --parallel=4",
"deploy": "nx run-many --target=deploy --all --parallel=4",
"deploy-staging": "nx run-many --target=deploy-staging --all --parallel=4",
"deploy-affected": "nx affected --target=deploy",
"format-check": "prettier --check .",
"format-fix": "prettier --write .",
"generate-cdk-service": "nx generate @swarmion/nx-plugin:cdk-service",
"generate-library": "nx generate @swarmion/nx-plugin:library",
"generate-service": "nx generate @swarmion/nx-plugin:service",
"graph": "nx dep-graph",
"lint-fix": "eslint --ext=js,ts --fix",
"lint-fix-all": "nx run-many --target=lint-fix-all --all --parallel=4",
"package": "nx run-many --target=package --all --parallel=4",
"postinstall": "husky install && syncpack format",
"test": "pnpm run format-check && nx run-many --targets=test-circular,test-linter,test-type,test-unit --all --parallel=4",
"test-affected": "pnpm run format-check && nx affected --targets=test-circular,test-linter,test-type,test-unit",
"test-circular": "nx run-many --target=test-circular --all --parallel=4",
"test-linter": "nx run-many --target=test-linter --all --parallel=4",
"test-type": "nx run-many --target=test-type --all --parallel=4",
"test-unit": "nx run-many --target=test-unit --all --parallel=4"
},
"devDependencies": {
"@commitlint/cli": "^17.4.0",
"@commitlint/config-conventional": "^17.4.0",
"@swarmion/nx-plugin": "^0.28.2",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"aws-sdk": "^2.1289.0",
"dependency-cruiser": "^12.11.1",
"eslint": "^8.31.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"lodash": "^4.17.21",
"npm-audit-resolver": "^3.0.0-7",
"nx": "16.1.0",
"prettier": "^2.8.1",
"syncpack": "^9.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": "^16.17.0"
},
"packageManager": "[email protected]"
}