forked from swarmion/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 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
{
"name": "@sls-monorepo/app",
"private": true,
"version": "1.0.0",
"license": "MIT",
"workspaces": [
"backend/*",
"contracts/*",
"packages/*",
"frontend/*"
],
"scripts": {
"check-audit": "check-audit --yarn",
"deploy": "yarn package && lerna run --stream --concurrency 2 deploy",
"deploy:production:since": "lerna run --stream --concurrency 3 deploy:production --include-dependents --since",
"deploy:since": "lerna run --stream --concurrency 3 deploy --include-dependents --since",
"deploy:staging:since": "lerna run --stream --concurrency 3 deploy:staging --include-dependents --since",
"info": "lerna run --stream sls:info",
"lint:fix": "lerna run --stream --concurrency 2 lint:fix",
"list:since": "lerna list --all --long --parseable --since",
"package": "lerna run --stream package",
"package:since": "lerna run --stream --concurrency 3 package --include-dependencies --include-dependents --since",
"prepare": "husky install && syncpack format",
"remove": "lerna run --stream --concurrency 2 remove",
"resolve-audit": "resolve-audit --yarn",
"test:all": "yarn test:linter && yarn test:type && yarn test:unit",
"test:linter": "lerna run --stream --concurrency 2 test:linter",
"test:since": "lerna run --stream --concurrency 3 test:all --include-dependents --since",
"test:type": "lerna run --stream --concurrency 2 test:type",
"test:unit": "lerna run --stream --concurrency 2 test:unit",
"watch": "lerna run --parallel watch"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"aws-sdk": "^2.1042.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.4.3",
"lerna": "^4.0.0",
"lodash": "^4.17.20",
"npm-audit-resolver": "^2.2.1",
"prettier": "^2.5.0",
"syncpack": "^5.6.10",
"typescript": "^4.5.2"
},
"engines": {
"node": "^14.18.1",
"yarn": "^1.22.15"
}
}