-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 963 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
{
"name": "sockettest",
"version": "1.0.0",
"description": "",
"main": "test.js",
"scripts": {
"compile": "babel src/ -D lib/",
"flow": "flow",
"server": "node_modules/babel-cli/bin/babel-node.js server.js",
"webpack": "webpack --watch",
"repl": "babel-node",
"test": "babel-node test/testReducer.js"
},
"author": "Jacob Prinz <jacobeliasprinz@gmail.com>",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"flow-bin": "^0.42.0",
"webpack": "^2.3.2"
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"babel-runtime": "^6.23.0",
"express": "^4.15.2",
"jquery": "^3.2.1",
"onlyjs": "0.0.2",
"socket.io": "^1.7.3",
"socket.io-client": "^1.7.3",
"wordpos": "^1.1.2"
}
}