This repository has been archived by the owner on Mar 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.71 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
58
59
60
{
"name": "Checkout",
"scripts": {
"start": "node app | ./node_modules/.bin/bunyan -c 'this.sensitive == undefined'",
"watch-css": "npx node-sass -rw ./static/scss -o ./static/css",
"dev": "NODE_ENV=development npx nodemon app",
"dev2": "NODE_ENV=development node ./node_modules/.bin/nodemon app | ./node_modules/.bin/bunyan -o short -c 'this.sanitised != true'",
"production": "npm run db:wait; npm run db:migrate; npm run start;",
"db:wait": "node ./_helpers/db-test",
"db:migrate": "knex migrate:latest",
"db:rollback": "knex migrate:rollback",
"db:seed": "knex seed:run"
},
"nodemon": {
"ignore": [
"static/*",
"logging/*",
"migrations/*",
"seeds/*",
"_*",
"docker/*"
]
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.1.1",
"@passport-next/passport": "^3.1.0",
"@passport-next/passport-local": "^1.2.1",
"body-parser": "^1.20.0",
"bootstrap": "^5.3.0-alpha1",
"bottleneck": "^2.19.5",
"bunyan": "^1.8.15",
"bunyan-middleware": "^1.0.2",
"buzz": "^1.2.1",
"bwip-js": "^3.1.0",
"clipboard": "^2.0.11",
"connect-pg-simple": "^7.0.0",
"cookie-parser": "^1.4.6",
"csurf": "^1.11.0",
"dotenv-safe": "^8.2.0",
"express": "^4.18.1",
"express-flash-plus": "^0.0.7",
"express-session": "^1.17.3",
"git-rev": "^0.2.1",
"helmet": "^5.1.0",
"ipp": "^2.0.1",
"jquery": "^3.6.0",
"knex": "^2.1.0",
"moment": "^2.29.4",
"node-sass": "^8.0.0",
"nodemailer": "^6.7.6",
"pdfkit": "^0.13.0",
"pg": "^8.7.3",
"pug": "^3.0.2",
"tempusdominus-bootstrap-4": "^5.39.2"
},
"devDependencies": {
"@faker-js/faker": "^7.3.0",
"nodemon": "^2.0.20"
}
}