-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 962 Bytes
/
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
{
"name": "snake",
"homepage": "https://projectsnakes.com/sp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "webpack-dev-server --mode development --open",
"build": "webpack --mode production",
"lint": "eslint --cache --format codeframe --ext mjs,jsx,js src test"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"npm": "^6.14.8",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.12.21",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8"
},
"devDependencies": {
"@neutrinojs/airbnb": "^9.2.0",
"@neutrinojs/jest": "^9.2.0",
"@neutrinojs/react": "^9.2.0",
"eslint": "^7.3.1",
"jest": "^26.1.0",
"neutrino": "^9.2.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}