-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.34 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "parking-ticket-system",
"version": "1.0.0-beta.1",
"type": "module",
"exports": "./app.js",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"start": "cross-env NODE_ENV=production node ./bin/www",
"dev:live": "cross-env NODE_ENV=dev DEBUG=parking-ticket-system:* nodemon ./bin/www",
"dev:test": "cross-env NODE_ENV=dev DEBUG=parking-ticket-system:* TEST_DATABASES=true nodemon ./bin/www",
"cy:open": "cypress open --config-file cypress.config.ts",
"cy:run": "cypress run --config-file cypress.config.ts",
"test": "cross-env NODE_ENV=dev DEBUG=parking-ticket-system:* TEST_DATABASES=true mocha --timeout 30000",
"coverage": "cross-env NODE_ENV=dev DEBUG=parking-ticket-system:* TEST_DATABASES=true c8 --reporter=lcov --reporter=text --reporter=text-summary mocha --timeout 30000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cityssm/parking-ticket-system.git"
},
"author": "The Corporation of the City of Sault Ste. Marie",
"license": "MIT",
"bugs": {
"url": "https://github.com/cityssm/parking-ticket-system/issues"
},
"homepage": "https://github.com/cityssm/parking-ticket-system#readme",
"dependencies": {
"@cityssm/authentication-helper": "^0.1.0",
"@cityssm/bulma-js": "^0.5.0",
"@cityssm/bulma-webapp-js": "^1.5.0",
"@cityssm/configurator": "^0.1.0",
"@cityssm/expressjs-server-js": "^2.3.2",
"@cityssm/mto-handler": "^0.2.0",
"@cityssm/utils-datetime": "^1.1.2",
"@fontsource/pt-mono": "^5.0.13",
"@fortawesome/fontawesome-free": "^5.15.4",
"@shaggytools/nhtsa-api-wrapper": "^3.0.4",
"better-sqlite3": "^10.0.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cross-env": "^7.0.3",
"csurf": "^1.11.0",
"debug": "^4.3.4",
"ejs": "^3.1.10",
"exit-hook": "^4.0.0",
"express": "^4.19.2",
"express-rate-limit": "^7.2.0",
"express-session": "^1.18.0",
"http-errors": "^2.0.0",
"multer": "^1.4.5-lts.1",
"papaparse": "^5.4.1",
"session-file-store": "^1.5.0",
"set-interval-async": "^3.0.3"
},
"devDependencies": {
"@cityssm/bulma-a11y": "^0.4.0",
"@cityssm/bulma-sticky-table": "^2.1.0",
"@cityssm/bulma-webapp-css": "^0.12.0",
"@cityssm/simple-fa5-checkbox": "^0.2.1",
"@types/activedirectory2": "^1.2.6",
"@types/better-sqlite3": "^7.6.10",
"@types/compression": "^1.7.5",
"@types/cookie-parser": "^1.4.7",
"@types/csurf": "^1.11.5",
"@types/debug": "^4.1.12",
"@types/ejs": "^3.1.5",
"@types/express": "^4.17.21",
"@types/express-serve-static-core": "^4.19.0",
"@types/express-session": "^1.18.0",
"@types/gulp": "^4.0.17",
"@types/gulp-sass": "^5.0.4",
"@types/html-pdf": "^3.0.3",
"@types/http-errors": "^2.0.4",
"@types/mocha": "^10.0.6",
"@types/multer": "^1.4.11",
"@types/node-windows": "^0.1.6",
"@types/papaparse": "^5.3.14",
"@types/session-file-store": "^1.2.5",
"@types/set-interval-async": "^1.0.3",
"bulma": "^0.9.4",
"bulma-divider": "^0.2.0",
"bulma-helpers": "^0.4.3",
"bulma-steps": "^2.2.1",
"bulma-switch": "^2.0.4",
"bulma-tooltip": "^3.0.2",
"cypress": "13.9.0",
"cypress-axe": "^1.5.0",
"eslint-config-cityssm": "^2.0.1",
"gulp": "^5.0.0",
"gulp-sass": "^5.1.0",
"nodemon": "^3.1.0",
"sass": "^1.77.1"
},
"private": true
}