-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 877 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 877 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
29
30
31
32
33
{
"name": "devablo.nodejs.restapi",
"version": "1.0.0",
"description": "",
"main": "lib/app.js",
"scripts": {
"start": "nodemon src/app.js --exec babel-node --presets es2015,stage-2",
"build": "babel src --experimental --source-maps-inline -d ./lib",
"serve": "node lib/app.js",
"pretyped": "rimraf flow-typed",
"predeploy": "npm run build",
"typed": "flow-typed install",
"flow": "flow"
},
"author": "Aaron Morey",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.2",
"debug": "^3.1.0",
"express": "^4.16.3",
"ramda": "^0.25.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-2": "^6.24.1",
"flow-bin": "^0.67.1",
"flow-typed": "^2.3.0",
"nodemon": "^1.17.1"
}
}