-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 734 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 734 Bytes
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
{
"name": "ipfs-api-pubsub-ws",
"version": "1.0.0",
"main": "src/index.js",
"license": "MIT",
"scripts": {
"local": "nodemon src/index.js --exec babel-node",
"start": "node dist/index.js",
"build": "babel src -d dist --presets es2015,stage-2",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"cors": "^2.8.4",
"express": "^4.16.3",
"ipfs-api": "^20.0.1",
"lodash": "^4.17.5",
"socket.io": "^2.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"nodemon": "^1.12.1"
}
}