-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
35 lines (35 loc) · 962 Bytes
/
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
{
"name": "pizza-database",
"version": "1.0.0",
"description": "pizza database",
"main": "server.js",
"scripts": {
"build": "babel --copy-files src --out-dir dist",
"build:watch": "npm run build -- --watch",
"heroku-postbuild": "npm run build",
"start": "node dist/server.js",
"start:dev": "nodemon dist/server.js",
"start:es5" : "nodemon src/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asantos3026/pizza-database.git"
},
"author": "ian, aileen, najee",
"license": "ISC",
"bugs": {
"url": "https://github.com/asantos3026/pizza-database/issues"
},
"homepage": "https://github.com/asantos3026/pizza-database#readme",
"dependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.0",
"babel-preset-es2015": "^6.18.0"
},
"devDependencies": {
"body-parser": "^1.15.2",
"express": "^4.14.0",
"path": "^0.12.7",
"pug": "^2.0.0-beta6"
}
}