-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.31 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
{
"name": "organizer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --hot",
"lint": "standard --verbose | snazzy",
"lint-fix": "standard --fix",
"precommit-msg": "echo 'Linting... && exit 0'"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"babel-eslint": "^8.2.1",
"eslint-config-standard": "^11.0.0-beta.0",
"lodash": "^4.17.4",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-icons": "^2.2.7",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"standard-loader": "^6.0.1",
"styled-components": "^2.4.0",
"styled-reset": "^0.1.3",
"uuid": "^3.2.1",
"validator": "^9.2.0"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.1.2",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"html-webpack-plugin": "^2.30.1",
"pre-commit": "^1.2.2",
"snazzy": "^7.0.0",
"standard": "^10.0.3",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.10.0"
},
"standard": {
"parser": "babel-eslint"
},
"precommit": [
"precommit-msg",
"lint-fix"
]
}