-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.62 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
{
"name": "posm-admin-ui",
"version": "2.2.1",
"license": "BSD-3-Clause",
"private": true,
"dependencies": {
"@blueprintjs/core": "^3.0.1",
"@blueprintjs/icons": "^3.0.0",
"bootstrap": "3",
"connected-react-router": "^4.3.0",
"dropzone": "^5.0.1",
"font-awesome": "^4.7.0",
"highlight.js": "^9.12.0",
"history": "^4.6.2",
"leaflet": "^1.0.3",
"pretty-bytes": "^3.0.1",
"react": "^16.4.1",
"react-bootstrap": "^0.32.1",
"react-dom": "^16.4.1",
"react-dropzone-component": "^3.2.0",
"react-redux": "^5.0.5",
"react-router-dom": "^4.1.1",
"react-socket-io": "github:charleslxh/react-socket-io#e2f381d3c2d79c58250281fd9f50f9c322906995",
"redux": "^3.7.2",
"redux-devtools-extension": "^2.13.2",
"redux-form": "^7.4.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1",
"xterm": "^3.5.1"
},
"devDependencies": {
"babel-core": "6",
"babel-runtime": "^6.26.0",
"gh-pages": "^1.0.0",
"git-exec-and-restage": "^1.0.1",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"prettier": "^1.3.1",
"react-scripts": "^1.0.7"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"precommit": "lint-staged",
"publish": "react-scripts build && gh-pages -d build -b dist"
},
"lint-staged": {
"*.js": [
"git-exec-and-restage prettier --write --"
],
"*.css": [
"git-exec-and-restage prettier --write --"
]
},
"eslintConfig": {
"extends": "react-app"
}
}