-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 785 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 785 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
{
"name": "post-api",
"version": "1.0.0",
"description": "post api built using devcoffee's reddit-api-clone tutorial",
"main": "index.js",
"scripts": {
"test": "nodemon bin/dev",
"foo": "node server/index.js",
"clean": "rm -rf dist",
"build": "npm run clean && mkdir dist && babel server -s -d dist",
"production": "npm run build && nodemon bin/production",
"start": "node dist/index.js"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.22.0",
"dotenv": "^4.0.0"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.16.1",
"express": "^4.14.1",
"mongoose": "^4.8.3",
"nodemon": "^1.11.0"
}
}