-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
35 lines (35 loc) · 1.12 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
{
"name": "paint-io-server",
"version": "1.0.0",
"description": "Server package for the websockets workshop",
"main": "server.js",
"scripts": {
"start": "npm run watch",
"watch": "nodemon server.js",
"server": "node server.js",
"release": "mkdir -p ./build/lib/commonjs/$npm_package_name/ && cp -r src ./build/lib/commonjs/$npm_package_name/ && cp package.json ./build/lib/commonjs/$npm_package_name/package.json && cp server.js ./build/lib/commonjs/$npm_package_name/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/goldhand/paint-io-server.git"
},
"author": "Will Farley <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/goldhand/paint-io-server/issues"
},
"homepage": "https://github.com/goldhand/paint-io-server#readme",
"dependencies": {
"express": "^4.16.3",
"socket.io": "^2.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.19.1",
"nodemon": "^1.17.3",
"socket.io": "^2.1.0"
}
}