-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.19 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.19 KB
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
{
"name": "force-bridge",
"license": "MIT",
"private": true,
"workspaces": [
"packages/**",
"apps/**"
],
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.23",
"babel-plugin-transform-class-properties": "^6.24.1",
"cross-env": "^7.0.3",
"eslint": "^7.24.0",
"eslint-formatter-pretty": "^4.0.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"lerna": "^4.0.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.4",
"typescript": "^4.2.4"
},
"scripts": {
"build:lib": "lerna run build",
"clean:lib": "lerna run clean",
"lint": "eslint --color --format=pretty packages/*/src/**/*.{ts,tsx} --color --format=pretty",
"test": "jest"
},
"lint-staged": {
"{packages,apps}/*/src/**/*.{ts,tsx}": [
"eslint . --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}