-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 888 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 888 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
{
"name": "movie-tickets-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node_modules/babel-cli/bin/babel.js ./ --source-maps --out-dir dist",
"start": "node_modules/nodemon/bin/nodemon.js -- node_modules/babel-cli/bin/babel-node.js server.js",
"populate": "node_modules/babel-cli/bin/babel-node.js populate.js"
},
"author": "Konstantin Shkut <konstantin.shkut@gmail.com> (http://rationalappdev.com)",
"license": "ISC",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.22.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"nodemon": "^1.11.0"
},
"dependencies": {
"body-parser": "^1.16.0",
"express": "^4.14.1",
"moment": "^2.17.1",
"mongoose": "^4.8.0",
"morgan": "^1.7.0"
}
}