-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.07 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
{
"name": "TimeOff.Management",
"version": "1.0.0",
"private": false,
"description": "Simple yet powerful absence management software for small and medium size business",
"engines": {
"node": ">=13.0.0"
},
"dependencies": {
"bluebird": "^2.10.2",
"body-parser": "^1.8.4",
"connect-redis": "^6.0.0",
"connect-session-sequelize": "3.0.0",
"cookie-parser": "^1.3.5",
"csv": "~0.4.6",
"express": "^4.13.4",
"express-handlebars": "^3.0.0",
"express-session": "^1.13.0",
"formidable": "~1.0.17",
"handlebars": "4.5.0",
"html-to-text": "^3.2.0",
"i18n": "^0.15.1",
"ical-generator": "^0.2.7",
"joi": "~12.0.0",
"ldapauth-fork": "^4.0.2",
"moment": "^2.11.2",
"moment-timezone": "^0.5.14",
"morgan": "^1.3.2",
"mysql": "^2.18.1",
"nconf": "^0.8.4",
"node-uuid": "^1.4.7",
"nodemailer": "^1.11.0",
"nodemailer-smtp-transport": "^1.1.0",
"nodemon": "^2.0.20",
"optimist": "^0.6.1",
"passport": "^0.3.2",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"redis": "^3.1.2",
"sequelize": "^3.19.2",
"sequelize-cli": "2.5.1",
"serve-favicon": "^2.1.7",
"underscore": "^1.8.3",
"uuid": "^3.3.2",
"validator": "^3.43.0"
},
"devDependencies": {
"@mapbox/node-pre-gyp": "1.0.11",
"chai": "^2.2.0",
"gulp": "^4.0.2",
"mocha": "^6.2.2",
"node-gyp": "^10.2.0",
"node-pre-gyp": "^0.17.0",
"request-promise": "^4.2.2",
"sass": "^1.80.6",
"selenium-webdriver": "2.53.3"
},
"scripts": {
"test": "node node_modules/mocha/bin/mocha --recursive t",
"dev": "nodemon bin/wwww",
"start": "node bin/wwww",
"db-update": "node node_modules/.bin/sequelize db:migrate --config=config/db.json --models-path=lib/model/db/",
"carry-over-allowance": "node bin/calculate_carry_over_allowance_for_all_users.js",
"compile-sass": "node node_modules/node-sass/bin/node-sass scss/main.scss public/css/style.css",
"preinstall": "npx npm-force-resolutions"
},
"resolutions": {
"graceful-fs": "^4.2.11"
}
}