-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.3 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
52
{
"name": "node-api",
"version": "1.0.0",
"description": "Example NodeJS API application to try out on Runnable.io",
"main": "dist",
"scripts": {
"dev": "nodemon -w src --exec \"babel-node src --presets es2015,stage-0\"",
"build": "babel src -s -D -d dist --presets es2015,stage-0",
"start": "node dist",
"prestart": "npm run -s build",
"test": "standard --verbose src/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RunnableDemo/node-api.git"
},
"author": "Praful Rana & Sohail Ahmed",
"license": "MIT",
"dependencies": {
"body-parser": "^1.13.3",
"compression": "^1.5.2",
"cors": "^2.7.1",
"express": "^4.13.3",
"lodash": "^4.16.3",
"lowdb": "^0.13.1",
"moment": "^2.15.1",
"resource-router-middleware": "^0.5.1"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"nodemon": "^1.9.2",
"standard": "^8.3.0"
},
"bugs": {
"url": "https://github.com/RunnableDemo/node-api/issues"
},
"homepage": "https://github.com/RunnableDemo/node-api#readme",
"keywords": [
"Runnable",
"Node",
"nodejs",
"node.js",
"api",
"express",
"docker",
"codenow",
"codesnippets"
]
}