-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.29 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
{
"private": true,
"license": "MIT",
"scripts": {
"build": "yarn workspaces foreach -t -v -p -i run build",
"clean": "yarn workspaces foreach -t -v -p -i run clean",
"tests": "jest",
"test": "yarn jest && yarn lint",
"lint": "tslint -c tslint.json -p tsconfig.json",
"watch": "yarn workspaces foreach -t -v -p -i run watch"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-typescript": "^7.3.3",
"@berry/pnpify": "^0.0.6",
"@types/jest": "^21.1.5",
"@types/node": "^7.0.18",
"babel-jest": "^24.8.0",
"husky": "^3.0.1",
"jest": "^24.8.0",
"lerna": "^3.13.4",
"lint-staged": "^9.2.1",
"prettier": "^1.17.0",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.4.5"
},
"lint-staged": {
"*.{ts,tsx}": [
"tslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"parser": "babel"
}
}