This repository has been archived by the owner on Feb 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
65 lines (65 loc) · 2.27 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
64
65
{
"name": "@swarmion-starter/root",
"private": true,
"version": "1.0.0",
"license": "MIT",
"workspaces": [
"backend/*",
"contracts/*",
"frontend/*",
"packages/*"
],
"scripts": {
"build-all": "nx run-many --target=build --all --parallel=4",
"check-audit": "check-audit --yarn",
"deploy": "nx run-many --target=deploy --all --parallel=4",
"deploy-affected": "nx affected --target=deploy",
"generate-library": "nx generate @swarmion/nx-plugin:library",
"generate-service": "nx generate @swarmion/nx-plugin:service",
"graph": "nx dep-graph",
"info": "nx run-many --target=sls-info --all --parallel=4",
"lint-fix": "nx run-many --target=lint-fix --all --parallel=4",
"linter-base-config": "eslint",
"package": "nx run-many --target=package --all --parallel=4",
"postinstall": "husky install && syncpack format",
"resolve-audit": "resolve-audit --yarn",
"test": "nx run-many --target=test --all --parallel=4",
"test-affected": "nx affected --target=test",
"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.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@nrwl/devkit": "^14.3.6",
"@nrwl/linter": "^14.3.6",
"@nrwl/tao": "^14.3.6",
"@nrwl/workspace": "^14.3.6",
"@swarmion/nx-plugin": "0.8.3",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"aws-sdk": "^2.1160.0",
"dependency-cruiser": "^11.10.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
"fresko": "^0.5.3",
"husky": "^8.0.1",
"lint-staged": "^13.0.2",
"lodash": "^4.17.21",
"npm-audit-resolver": "^3.0.0-7",
"nx": "^14.3.6",
"prettier": "^2.7.1",
"syncpack": "^7.2.2",
"typescript": "^4.7.4"
},
"engines": {
"node": "^16.15.0"
},
"packageManager": "yarn@3.2.1"
}