forked from creativetechnologylab/checkout
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.76 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
61
62
{
"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.5.1",
"@passport-next/passport": "^3.1.0",
"@passport-next/passport-local": "^1.2.1",
"@popperjs/core": "^2.11.8",
"@sealsystems/ipp": "^2.8.0",
"body-parser": "^1.20.2",
"bootstrap": "^5.3.2",
"bottleneck": "^2.19.5",
"bunyan": "^1.8.15",
"bunyan-middleware": "^1.0.2",
"buzz": "^1.2.1",
"bwip-js": "^4.2.0",
"clipboard": "^2.0.11",
"connect-pg-simple": "^9.0.1",
"cookie-parser": "^1.4.6",
"csurf": "^1.11.0",
"dotenv-safe": "^8.2.0",
"express": "^4.18.2",
"express-flash-plus": "^0.0.7",
"express-session": "^1.17.3",
"git-rev": "^0.2.1",
"helmet": "^7.1.0",
"ipp": "^2.0.1",
"jquery": "^3.7.1",
"knex": "^3.1.0",
"moment": "^2.30.1",
"node-sass": "^9.0.0",
"nodemailer": "^6.9.8",
"pdfkit": "^0.14.0",
"pg": "^8.11.3",
"pug": "^3.0.2",
"validator": "^13.11.0"
},
"devDependencies": {
"@faker-js/faker": "^8.3.1",
"nodemon": "^3.0.3"
}
}