-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 863 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
43
{
"name": "nodejs-boilerplate",
"version": "0.0.1",
"description": "",
"main": "./src/main.js",
"scripts": {
"test": "mocha",
"start": "babel-node ./src/main",
"build": "",
"dev": "nodemon ./src/main --exec babel-node"
},
"keywords": [],
"author": {
"name": "Vu Anh Dung",
"email": "dungva1505@gmail.com",
"github": "dungva1505"
},
"engines": {
"node": "v8.11.1"
},
"os": [
"win32",
"linux",
"mac"
],
"license": "ISC",
"dependencies": {
"ajv": "^6.5.2",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"express": "^4.16.3",
"jsonwebtoken": "^8.3.0",
"multer": "^1.3.1",
"nodemon": "^1.18.3",
"uuid": "^3.3.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.2.0"
}
}