forked from easybread/easybread
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.22 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
{
"name": "easybread",
"private": true,
"scripts": {
"bootstrap": "./node_modules/.bin/lerna bootstrap",
"bootstrap:no-scripts": "yarn bootstrap --ignore-scripts",
"build": "./node_modules/.bin/lerna run build",
"test": "./node_modules/.bin/lerna run test -- --logHeapUsage",
"check-types": "./node_modules/.bin/lerna run check-types",
"lint": "./node_modules/.bin/lerna run lint",
"lint:ci": "./node_modules/.bin/lerna run lint:ci",
"test:ci": "JEST_JUNIT_OUTPUT_DIR=reports/junit ./node_modules/.bin/lerna run --stream test:ci -- --logHeapUsage --maxWorkers=2"
},
"husky": {
"hooks": {
"pre-commit": "yarn check-types && yarn lint && yarn test"
}
},
"devDependencies": {
"@types/jest": "^26.0.9",
"@types/node": "^13.9.0",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-simple-import-sort": "^5.0.2",
"husky": "^4.2.5",
"jest": "^26.3.0",
"jest-junit": "^11.1.0",
"lerna": "^3.22.1",
"prettier": "^2.0.4",
"rimraf": "^3.0.2",
"ts-jest": "^26.2.0",
"typescript": "^3.8.3"
}
}