forked from millicast/millicast-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.12 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
{
"name": "root",
"private": true,
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.js": [
"eslint --fix",
"git add"
]
},
"scripts": {
"prepare": "lerna bootstrap",
"build": "lerna run build",
"start": "lerna run start --parallel",
"test": "lerna run test --stream",
"build-docs": "lerna run build-docs",
"start-docs": "lerna run start-docs --stream",
"publish": "lerna publish from-git",
"lint-fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix"
},
"devDependencies": {
"@lerna/publish": "^4.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.21.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-flowtype": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.2.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "^4.3.8",
"install": "^0.13.0",
"lerna": "^4.0.0",
"lint-staged": "^10.5.4",
"npm": "^7.6.2"
}
}