forked from EdgeApp/edge-login-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.22 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.22 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
{
"private": true,
"scripts": {
"precommit": "lint-staged && flow",
"flow": "flow",
"format": "import-sort -l --write 'packages/*/*.js' 'packages/*/src/**/*.js'; prettier-eslint --write 'packages/*/*.js' 'packages/*/src/**/*.js'",
"lint": "eslint 'packages/*/*.js' 'packages/*/src/**/*.js'",
"prepare": "lerna exec yarn prepare"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"css-module-flow": "^1.0.0",
"eslint": "^4.18.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.6.1",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"import-sort-cli": "^4.2.0",
"import-sort-parser-babylon": "^4.2.0",
"import-sort-style-module": "^4.2.0",
"lerna": "^2.8.0",
"lint-staged": "^6.1.1",
"prettier-eslint-cli": "^4.7.1"
},
"importSort": {
".js, .es": {
"parser": "babylon",
"style": "module"
}
},
"lint-staged": {
"linters": {
"*.js": [
"eslint",
"prettier-eslint --list-different"
]
},
"ignore": [
"flow-typed/**"
]
},
"workspaces": [
"packages/*"
]
}