-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.5 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
{
"name": "@larix/monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"license": "MIT",
"scripts": {
"build": "yarn workspaces foreach run --topological -p -i build",
"clean": "yarn workspaces foreach run -p -i clean",
"test:unit": "jest",
"test": "yarn tests && yarn lint",
"test:lint": "eslint --fix",
"lint": "yarn test:lint **/*.ts",
"watch": "yarn workspaces foreach run --topological -p -i watch",
"build:tsc": "pnpify tsc -p"
},
"dependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.6.0",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"@babel/preset-typescript": "^7.6.0",
"@babel/register": "^7.6.0",
"@types/jest": "^24.0.19",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"@yarnpkg/pnpify": "2.0.0-rc.6",
"babel-jest": "^24.9.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-jest": "^22.19.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"typescript": "^3.6.4"
},
"lint-staged": {
"*.ts": [
"tslint --fix -c tslint.json",
"git add"
],
"*.{json}": [
"prettier --write",
"git add"
]
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"parser": "babel"
}
}