-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.32 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
44
45
46
47
48
49
50
51
{
"name": "exquisite-bodies",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run watch & nodemon ./server/index.js --exec babel-node",
"watch": "watchify client/index.js -o client/public/bundle.js -dv -t babelify",
"test:unit": "mocha test/server/unit/**.js --compilers js:babel-core/register",
"test:integration": "mocha test/server/integration/*.* --compilers js:babel-core/register",
"test:all": "mocha test/server/**/*.* --compilers js:babel-core/register"
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"browserify": {
"transform": [
"babelify"
]
},
"author": "Oliver Stigley",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-preset-es2015": "^6.9.0",
"canvas": "^1.4.0",
"chai-as-promised": "^5.3.0"
},
"dependencies": {
"babel-preset-react": "^6.11.1",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"chai": "^3.5.0",
"clone": "^1.0.2",
"deep-freeze": "0.0.1",
"express": "^4.14.0",
"mocha": "^2.5.3",
"nodemon": "^1.10.0",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"socket.io": "^1.4.8",
"socket.io-client": "^1.4.8",
"watchify": "^3.7.0"
}
}