forked from ashlessscythe/timeoff-alien
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.64 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.64 KB
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
{
"name": "TimeOff.Management",
"version": "1.0.0",
"private": false,
"description": "Simple yet powerful absence management software for small and medium size business",
"engines": {
"node": ">=16.0.0"
},
"optionalDependencies": {
"mysql2": "^3.9.1",
"pg": "^8.11.4",
"redis": "^3.1.2",
"sqlite3": "^5.1.6"
},
"dependencies": {
"@handlebars/allow-prototype-access": "^1.0.5",
"@slack/client": "^4.1.0",
"bluebird": "^3.5.4",
"body-parser": "^1.19.0",
"connect-redis": "^6.0.0",
"connect-session-sequelize": "6.0.0",
"cookie-parser": "^1.4.4",
"csv": "~5.1.1",
"debug": "~4.1.1",
"dotenv": "^16.4.5",
"express": "^4.16.4",
"express-handlebars": "^3.0.2",
"express-session": "^1.16.1",
"formidable": "~1.2.1",
"html-to-text": "^5.1.1",
"ical-generator": "^1.7.1",
"joi": "~14.3.1",
"ldapauth-fork": "^4.2.0",
"moment": "^2.24.0",
"moment-timezone": "^0.5.25",
"morgan": "^1.9.1",
"multer": "^1.4.1",
"nconf": "^0.10.0",
"node-uuid": "^1.4.8",
"nodemailer": "^6.1.1",
"nodemailer-smtp-transport": "^2.7.4",
"optimist": "^0.6.1",
"passport": "^0.4.0",
"passport-google-oauth20": "^1.0.0",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"sequelize": "^5.22.5",
"sequelize-cli": "^5.5.1",
"serve-favicon": "^2.5.0",
"underscore": "^1.9.1",
"uuid": "^3.3.2",
"validator": "^13.11.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-mocha": "^10.2.0",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.1.1",
"i18n": "^0.15.1",
"mocha": "^6.2.2",
"node-sass": "^8.0.0",
"prettier": "1.17.0",
"request-promise": "^4.2.4",
"selenium-webdriver": "^3.6.0"
},
"scripts": {
"prettier": "prettier --write \"**/*.js\"",
"lint": "eslint --ext .js \"**/*.js\"",
"lint:fix": "eslint --ext .js \"**/*.js\" --fix",
"test": "node node_modules/mocha/bin/mocha --recursive t",
"test:chrome": "USE_CHROME=1 node node_modules/mocha/bin/mocha --recursive t",
"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"
}
}