-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 838 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 838 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
{
"name": "adserver-tutorial",
"description": "Adserver Tutorial for platform developers",
"scripts": {
"start": "node dist/app.js",
"dev": "nodemon --exec babel-node --presets env,stage-2 src/app.js",
"build": "babel -d ./dist ./src -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kijepark/adserver-tutorial.git"
},
"author": "Kije Park",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-handlebars": "^5.1.0",
"handlebars": "^4.7.6",
"moment": "^2.27.0",
"mongoose": "^5.10.0",
"mongoose-sequence": "^5.2.2"
},
"devDependencies": {
"nodemon": "^2.0.4",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1"
}
}