-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "express-boilerplate",
"version": "1.0.0",
"description": "Simple boilerplate for expressjs",
"main": "server.js",
"scripts": {
"start": "node server.js"
},
"engines": {
"node": ">=10.8.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/giladno/express-boilerplate.git"
},
"keywords": [],
"author": "Gilad Novik <gilad@novik.ca>",
"license": "MIT",
"bugs": {
"url": "https://github.com/giladno/express-boilerplate/issues"
},
"homepage": "https://github.com/giladno/express-boilerplate#readme",
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.15.3",
"eslint-plugin-node": "^8.0.1"
},
"dependencies": {
"cookie-session": "^2.0.0-beta.3",
"ejs": "^2.6.1",
"express": "^4.16.4",
"longjohn": "^0.2.12",
"morgan": "^1.9.1",
"require-all": "^3.0.0",
"sequelize": "^5.2.6",
"sqlite3": "^4.0.6",
"winston": "^3.2.1"
}
}