-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.17 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
{
"name": "corporate-records-manager",
"version": "1.0.0",
"private": true,
"description": "A system for tracking various corporate records administered by the Clerks Department.",
"homepage": "https://github.com/cityssm/corporate-records-manager#readme",
"bugs": {
"url": "https://github.com/cityssm/corporate-records-manager/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cityssm/corporate-records-manager.git"
},
"license": "MIT",
"author": "The Corporation of the City of Sault Ste. Marie",
"type": "module",
"exports": "./app.js",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"scripts": {
"build": "npx genversion --es6 --semi version.js",
"start": "cross-env NODE_ENV=production node ./bin/www",
"dev": "cross-env NODE_ENV=dev DEBUG=corporate-records-manager:* nodemon ./bin/www",
"dev:java": "cross-env NODE_ENV=dev DEBUG=java-caller nodemon ./bin/www",
"test": "mocha --timeout 10000 --exit",
"coverage": "c8 --reporter=lcov --reporter=text --reporter=text-summary mocha --timeout 10000 --exit"
},
"dependencies": {
"@cityssm/ad-web-auth-connector": "^0.2.0",
"@cityssm/bulma-js": "^0.3.3",
"@cityssm/bulma-webapp-js": "^1.5.0",
"@cityssm/date-diff": "^2.2.3",
"@cityssm/docushare": "^1.1.1",
"@cityssm/express-abuse-points": "^1.0.2",
"@cityssm/expressjs-server-js": "^2.3.2",
"@cityssm/mssql-multi-pool": "^2.1.6",
"@cityssm/simple-password-generator": "^2.1.2",
"@fontsource/barlow": "^4.5.7",
"@fortawesome/fontawesome-free": "^5.15.4",
"activedirectory2": "^2.1.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.8",
"exit-hook": "^3.0.0",
"express": "^4.18.1",
"express-rate-limit": "^6.4.0",
"express-session": "^1.17.3",
"http-errors": "^2.0.0",
"mssql": "^8.1.2",
"node-cache": "^5.1.2",
"papaparse": "^5.3.2",
"session-file-store": "^1.5.0",
"set-interval-async": "^2.0.3"
},
"devDependencies": {
"@cityssm/bulma-a11y": "^0.4.0",
"@cityssm/bulma-sticky-table": "^1.4.0",
"@creativebulma/bulma-tooltip": "^1.2.0",
"@types/activedirectory2": "^1.2.3",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.3",
"@types/csurf": "^1.11.2",
"@types/debug": "^4.1.7",
"@types/ejs": "^3.1.1",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.5",
"@types/gulp": "^4.0.9",
"@types/gulp-concat": "^0.0.33",
"@types/gulp-minify": "^3.1.1",
"@types/http-errors": "^1.8.2",
"@types/mocha": "^9.1.1",
"@types/mssql": "^8.0.3",
"@types/papaparse": "^5.3.2",
"@types/session-file-store": "^1.2.2",
"@types/set-interval-async": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"bulma": "^0.9.4",
"eslint": "^8.19.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-unicorn": "^43.0.0",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-minify": "^3.1.0",
"nodemon": "^2.0.19",
"puppeteer": "^15.3.1"
}
}