forked from FruitieX/frontend-kit
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.49 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
{
"name": "frontend-kit",
"version": "0.1.0",
"private": true,
"dependencies": {
"history": "^4.7.2",
"jwt-decode": "^2.2.0",
"material-ui": "1.0.0-beta.12",
"material-ui-icons": "^1.0.0-beta.5",
"moment": "^2.19.1",
"offline-plugin": "^4.8.3",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-intl": "^2.4.0",
"react-intl-redux": "^0.6.0",
"react-number-format": "^2.0.4",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "5.0.0-alpha.6",
"redux": "^3.7.2",
"redux-act": "^1.4.0",
"redux-api": "^0.11.0",
"redux-persist": "^4.9.1",
"redux-persist-transform-filter": "^0.0.15",
"redux-thunk": "^2.2.0",
"styled-components": "^2.1.2",
"typeface-roboto": "^0.0.35"
},
"devDependencies": {
"eslint": "^4.6.1",
"husky": "^0.14.3",
"lint-staged": "^4.1.3",
"prettier": "^1.6.1",
"react-scripts": "^1.0.13"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint": "eslint --ext .jsx --ext .js src",
"lint:fix": "eslint --ext .jsx --ext .js --fix src",
"prettier": "prettier --single-quote --trailing-comma all --write \"{,!(build|node_modules)/**/}*.js\""
},
"lint-staged": {
"*.js": [
"prettier --single-quote --trailing-comma all --write",
"git add"
]
}
}