-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
51 lines (51 loc) · 1.38 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
{
"name": "wedding-invitation",
"version": "0.0.0",
"private": true,
"scripts": {
"generate": "node index.js",
"test": "snyk test && nyc mocha --recursive test",
"start": "node ./bin/www | \"node_modules/.bin/bunyan\"",
"dev": "nodemon ./bin/www | \"node_modules/.bin/bunyan\"",
"start-win": "TITLE Wedding Invitation && node ./bin/www | \"node_modules/.bin/bunyan\"",
"heroku-start": "node ./bin/www"
},
"author": "sauanla",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"bunyan": "^1.8.12",
"connect-mongo": "^3.2.0",
"connect-timeout": "^1.9.0",
"cookie-parser": "~1.4.3",
"debug": "~2.6.3",
"dotenv": "^8.2.0",
"ejs": "^2.7.1",
"express": "^4.16.0",
"express-ejs-layouts": "^2.5.0",
"express-recaptcha": "^5.0.2",
"express-session": "^1.17.1",
"express-validator": "^6.0.0",
"fs": "^0.0.1-security",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mongoose": "^5.9.27",
"morgan": "^1.10.0",
"request": "^2.88.0",
"serve-favicon": "~2.4.2",
"session": "^0.1.0",
"uuid": "^3.1.0",
"validator": "^13.5.2"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"eslint": "^4.11.0",
"mocha": "^4.0.1",
"nyc": "^11.3.0",
"should": "^13.1.3",
"snyk": "^1.50.0",
"supertest": "^3.0.0"
}
}