-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1020 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
36
37
38
39
40
41
42
{
"name": "cscon18-houseworkup",
"version": "1.0.0",
"description": "Training backend services.",
"main": "src/index.js",
"keywords": [
"expressjs"
],
"author": "accenture",
"license": "ISC",
"scripts": {
"start": "nodemon --delay 3 src/index.js --exec babel-node --presets es2015,stage-2",
"build": "node ./node_modules/babel-cli/bin/babel src -d dist --copy-files",
"serve": "node dist/index.js"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.17.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"nodemon": "^1.14.12"
},
"dependencies": {
"express": "^4.16.2",
"express-jwt": "^5.3.0",
"http": "0.0.0",
"jsonwebtoken": "^8.1.1",
"mysql": "^2.15.0",
"swagger-ui-express": "^2.0.15"
},
"nodemonConfig": {
"watch": [
"src"
],
"signal": "SIGTERM"
},
"eslintIgnore": [
"dist/**.*"
]
}