-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 735 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 735 Bytes
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
{
"name": "cqrs-cafe",
"version": "1.0.0",
"main": "index.js",
"author": "Bennie <brobinson88@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.0",
"chai": "^4.1.1",
"mocha": "^5.2.0",
"webpack": "^3.5.3",
"webpack-dev-server": "^2.7.1"
},
"scripts": {
"watch": "webpack-dev-server --hot --inline --content-base build/",
"test": "mocha --compilers js:babel-core/register",
"build": "webpack -p"
},
"dependencies": {
"history": "^4.10.1",
"react": "^16.5.0",
"react-dom": "^16.5.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1"
}
}