-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.51 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": "springkit-node",
"version": "0.1.0",
"description": "Boilerplate for Express/MySQL based apps",
"license": "MIT",
"repository": {
"type": "git",
"url": ""
},
"scripts": {
"build": "npm-run-all build:*",
"build:css": "node-sass public/css/main.scss > public/css/main.css",
"postinstall": "npm run build",
"start": "node server.js",
"watch": "npm-run-all --parallel watch:*",
"watch:css": "nodemon -e scss -w public/css -x npm run build:css",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"dependencies": {
"async": "^2.6.0",
"bcrypt-nodejs": "^0.0.3",
"body-parser": "^1.18.2",
"bookshelf": "^0.10.4",
"chalk": "^2.3.0",
"compression": "^1.7.1",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"express-flash": "0.0.2",
"express-session": "^1.15.6",
"express-status-monitor": "^1.0.1",
"express-validator": "^4.3.0",
"knex": "^0.19.5",
"lusca": "^1.5.2",
"method-override": "^2.3.10",
"moment": "^2.19.1",
"morgan": "^1.9.0",
"mysql": "^2.15.0",
"node-sass": "^4.6.0",
"nodemailer": "^4.4.0",
"nodemon": "^1.12.1",
"npm-run-all": "^4.1.2",
"nunjucks": "^3.0.1",
"nunjucks-date-filter": "^0.1.1",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-github": "^1.1.0",
"passport-local": "^1.0.0",
"passport-twitter": "^1.0.4",
"snyk": "^1.49.1"
},
"devDependencies": {},
"engines": {
"node": "6.1.0"
},
"snyk": true
}