-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
38 lines (38 loc) · 1.05 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
{
"name": "mentoring__react_redux_d3__server",
"version": "0.0.0",
"description": "",
"private": true,
"author": "Alyssa Kwan <[email protected]>",
"license": "Unlicense",
"homepage": "https://github.com/alyssackwan/mentoring__react_redux_d3#readme",
"bugs": {
"url": "https://github.com/alyssackwan/mentoring__react_redux_d3/issues"
},
"repository": "alyssackwan/mentoring__react_redux_d3",
"scripts": {
"start": "concurrently \"npm run start-server\" \"npm run start-client\"",
"start-server": "babel-node server.js",
"start-client": "babel-node start-client.js",
"test": "mocha --compilers js:babel-core/register --recursive",
"test:watch": "npm test -- --watch"
},
"dependencies": {
"express": "^4.14.0",
"express-ws": "^2.0.0",
"request": "^2.79.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-preset-es2015": "^6.18.0",
"chai": "^3.5.0",
"concurrently": "^3.1.0",
"mocha": "^3.2.0"
},
"babel": {
"presets": [
"es2015"
]
}
}