-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 999 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
38
39
40
{
"name": "react-voting-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "babel-node index.js",
"test": "mocha --compilers js:babel-core/register --require ./test/test_helper.js --recursive",
"test:watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/jonathanhuang13/react-voting-app.git"
},
"keywords": [],
"author": "Jonathan Huang",
"license": "ISC",
"bugs": {
"url": "/~https://github.com/jonathanhuang13/react-voting-app/issues"
},
"homepage": "/~https://github.com/jonathanhuang13/react-voting-app#readme",
"babel": {
"presets": [
"es2015"
]
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.5.0",
"chai-immutable": "^1.5.4",
"mocha": "^2.4.5"
},
"dependencies": {
"immutable": "^3.8.1",
"redux": "^3.5.2",
"socket.io": "^1.4.6"
}
}