-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.07 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
{
"name": "simon-with-pokemon",
"version": "1.0.0",
"description": "Pick the correct items in the order shown",
"main": "index.js",
"repository": "",
"author": "",
"scripts": {
"start": "webpack-dev-server --mode development",
"build": "webpack --mode production",
"standard": "standard",
"test": "jest",
"test:watch": "npm test -- --watch"
},
"pre-commit": [
"standard"
],
"dependencies": {
"axios": "^0.18.0",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-mock-store": "^1.5.3",
"redux-thunk": "^2.3.0",
"styled-components": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.8.0",
"pre-commit": "^1.2.2",
"standard": "^12.0.1",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14"
}
}