-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·41 lines (41 loc) · 1.21 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
{
"name": "react-snake",
"description": "Snake game implemented in React",
"homepage": "https://blackboxvision.github.io/react-snake",
"version": "0.0.7",
"dependencies": {
"i18next": "^8.4.3",
"i18next-browser-languagedetector": "^2.0.0",
"material-ui": "next",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-i18next": "^4.8.0",
"react-redux": "^5.0.5",
"react-responsive": "^1.3.4",
"react-router": "^4.1.2",
"react-router-dom": "^4.1.2",
"react-tap-event-plugin": "^2.0.1",
"recompose": "^0.24.0",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-reset": "^0.3.0",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1"
},
"devDependencies": {
"gh-pages": "^1.0.0",
"prettier": "^1.5.3",
"react-scripts": "1.0.0",
"why-did-you-update": "^0.0.8"
},
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"prettier": "./node_modules/.bin/prettier --tab-width 4 --print-width 120 --single-quote --write 'src/**/*.js'"
}
}