-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.09 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.09 KB
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
{
"name": "get-started-node",
"main": "server.js",
"description": "An introduction to developing Node.js apps on the Bluemix platform",
"version": "0.1.1",
"private": false,
"engines": {
"node": "6.*"
},
"scripts": {
"start": "node server.js",
"build": "babel src -d lib",
"webpack": "webpack --config config/webpack.js",
"webpack-watch": "webpack --config config/webpack.js --watch --colors"
},
"repository": {
"type": "git",
"url": "https://github.com/IBM-Bluemix/get-started-node"
},
"dependencies": {
"body-parser": "^1.17.x",
"cfenv": "^1.0.x",
"cloudant": "^1.7.x",
"dotenv": "^4.0.0",
"express": "^4.15.x",
"express-react-views": "^0.10.4",
"express-ws": "^3.0.0",
"pubsub-js": "^1.5.7",
"react": "^16.2.0",
"react-color": "^2.13.8",
"react-dom": "^16.2.0",
"websocket": "^1.0.25"
},
"babel-preset-es2015": "^6.24.1",
"author": "IBM Corp",
"license": "Apache-2.0",
"devDependencies": {
"babel": "^5.0.12",
"babel-core": "^5.0.12",
"babel-loader": "^5.0.0",
"webpack": "^1.8.4"
}
}