-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 1.82 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "edge-plugin-simplex",
"version": "0.0.3",
"private": true,
"devDependencies": {
"babel-eslint": "^8.1.0",
"babel-jest": "^20.0.3",
"edge-libplugin": "https://github.com/EdgeApp/edge-libplugin.git#9744aaf",
"eslint": "^4.17.1",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.3.0",
"eslint-plugin-standard": "^3.0.1",
"flow-bin": "0.84.0",
"husky": "^1.3.1",
"import-sort-cli": "^5.0.0",
"lint-staged": "^6.1.1",
"material-ui": "1.0.0-beta.39",
"prettier-eslint-cli": "^4.7.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router-dom": "^5.0.0",
"react-scripts": "1.1.1",
"rimraf": "^2.6.2",
"uuid": "^3.2.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"clean": "rimraf target build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"edge": "edge-ify -o target -s build",
"lint": "eslint --parser babel-eslint ./src",
"lint:fix": "npm run lint -- --fix",
"flow:0": "flow; exit 0",
"flow": "flow",
"precommit": "flow",
"format": "import-sort -l --write '*.js' 'src/**/*.js' 'test/**/*.js'; prettier-eslint --write '*.js' 'src/**/*.js' 'test/**/*.js'"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"lint-staged": {
"ignore": [
"**/flow-typed/npm/*.js"
],
"linters": {
"*.js": [
"eslint",
"prettier-eslint --list-different"
]
}
},
"prettier": {
"printWidth": 160
},
"files": [
"target/index.html",
"manifest.json"
],
"dependencies": {
"moment": "^2.22.2"
}
}