-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.14 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
{
"name": "mads",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap --hoist --force-local",
"build": "lerna run build",
"clear": "lerna run clear",
"start": "jest --watch",
"test": "npm run test:unit && npm run test:lint",
"test:unit": "jest --coverage",
"test:lint": "eslint 'packages/**/src/**/*.ts' 'packages/**/tests/**/*.ts'"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/jest": "^26.0.0",
"@types/node": "^14.0.1",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.0.1",
"@typescript-eslint/parser": "^4.4.0",
"conventional-changelog-cli": "^2.0.31",
"eslint": "^7.11.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"hygen": "^6.0.4",
"jest": "^26.0.0",
"jest-config": "^26.0.0",
"lerna": "^3.20.2",
"prettier": "^2.0.5",
"ts-jest": "^26.0.0",
"ts-node": "^9.0.0",
"tslint": "^6.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}