-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 848 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 848 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
{
"name": "nodejs-es6-seed",
"version": "0.0.1",
"description": "a node js seed repo to build REST APIs",
"main": "index.js",
"repository": "https://github.com/fourthofaugust/nodejs-es6-seed.git",
"author": "Phani Mahesh",
"license": "Apache-2.0",
"private": false,
"dependencies": {
"atob": "^2.1.2",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"esm": "^3.0.84",
"express": "^4.16.4",
"helmet": "^3.14.0",
"mysql": "^2.16.0",
"sequelize": "^4.41.0"
},
"scripts": {
"start": "node -r esm src/index.js",
"start:local": "nodemon -r esm -r dotenv/config src/index.js",
"e2e": "newman run functional-tests.script.json -r cli,junit --reporter-junit-export ./functional-tests.xml"
},
"devDependencies": {
"dotenv": "^6.2.0",
"newman": "^4.2.2",
"nodemon": "^1.18.9"
}
}