-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.45 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "es6-boilerplate-nodejs-express",
"version": "1.0.0",
"description": "Quick Start ES6 NodeJS Server",
"main": "app.js",
"repository": {
"type": "git",
"url": "git+https://github.com/VonSwirl/es6-node-barebone-boilerplate.git"
},
"bugs": {
"url": "https://github.com/VonSwirl/es6-node-barebone-boilerplate/issues"
},
"scripts": {
"postinstall": "npm i -g nodemon",
"start": "babel-node app.js",
"test": "snyk test"
},
"engines": {
"node": "10.x"
},
"author": "Jerome Hurley",
"license": "GPL-2.0-or-later",
"dependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.6",
"@babel/node": "^7.8.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.6",
"@babel/register": "^7.8.6",
"@babel/runtime": "^7.8.4",
"compression": "^1.7.4",
"cookie-session": "^1.4.0",
"core-js": "^3.6.4",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^5.9.3",
"helmet": "^3.21.3",
"pug": "^2.0.4",
"request": "^2.88.2"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^7.0.0",
"snyk": "^1.277.2"
},
"optionalDependencies": {
"fsevents": "^2.1.2",
"acorn": "^7.1.1"
}
}