-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
40 lines (40 loc) · 1.03 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
{
"name": "shoppingCartRedux",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --port 3000",
"test": "mocha --require babel-register ./test/test_helper.js --recursive ./test",
"test:watch": "npm run test -- --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"babel-preset-stage-1": "^6.24.1",
"express": "^4.16.2",
"react": "^16.0.0",
"react-bootstrap": "^0.31.3",
"react-dom": "^16.0.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.2",
"chai-jquery": "^2.0.0",
"enzyme": "^2.9.1",
"jquery": "^3.4.0",
"jsdom": "^11.1.0",
"mocha": "^4.0.1",
"react-addons-test-utils": "^15.6.2",
"redux-logger": "^3.0.6",
"webpack": "^3.7.1",
"webpack-dev-server": "^2.9.1"
}
}