-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.55 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
{
"name": "react-parcel",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "parcel src/index.html --no-hmr -p 3000",
"build": "parcel build src/index.html",
"deploy": "yarn build && surge dist --domain demo-react-snake.surge.sh",
"precommit": "lint-staged",
"prettier": "./node_modules/.bin/prettier --write \"src/**/*.{js,jsx}\"",
"eslint": "./node_modules/.bin/eslint src"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"grid-styled": "^4.1.0",
"immutability-helper": "^2.7.0",
"lib": "^3.0.2",
"lodash": "^4.17.10",
"mousetrap": "^1.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"recompose": "^0.27.1",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"reselect": "^3.0.1",
"styled-components": "^3.3.0"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"babel-plugin-module-resolver": "^3.1.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.1.1",
"eslint-config-react-app": "^2.1.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-flowtype": "^2.34.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-standard": "^3.0.1",
"lint-staged": "^7.0.0",
"parcel-bundler": "^1.6.2",
"prettier": "^1.11.1"
}
}