-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·58 lines (58 loc) · 1.61 KB
/
package.json
File metadata and controls
executable file
·58 lines (58 loc) · 1.61 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "nodeserver-backend-boilerplate",
"version": "0.1.0",
"description": "Boilerplate for API Server written in Node.js and ES6",
"repository": {
"type": "git",
"url": "git+https://github.com/akashanand708/nodeserver_backend"
},
"author": {
"name": "Akash Anand",
"email": "akashanand110390@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/akashanand708/nodeserver_backend/issues"
},
"keywords": [
"nodejs",
"nodejs-modules",
"nodejs-server",
"nodejs-mysql"
],
"homepage": "https://github.com/akashanand708/nodeserver_backend#readme",
"scripts": {
"start": "NODE_ENV=development nodemon ./src/app.js --exec babel-node",
"build": "babel src -d dist",
"serve": "NODE_ENV=production node dist/app.js",
"test": "mocha --compilers js:babel-register",
"pretest": "eslint --ignore-path .gitignore ."
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.10.4",
"babel-preset-env": "1.7.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-es2015-node6": "0.3.0",
"babel-preset-stage-2": "6.24.1",
"babel-preset-stage-3": "6.11.0",
"babel-register": "6.26.0",
"mocha": "5.1.1",
"nodemon": "1.17.4"
},
"dependencies": {
"bcryptjs": "2.4.3",
"body-parser": "1.18.2",
"cookie-parser": "1.4.3",
"custom-env": "1.0.0",
"express": "4.16.3",
"jsonwebtoken": "8.2.1",
"lodash": "4.17.10",
"multer": "1.3.0",
"nodemailer": "4.6.4",
"prisma-client-lib": "1.27.3",
"restify-errors": "6.0.0",
"swagger-ui-express": "3.0.9",
"winston": "2.4.2"
}
}