-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.06 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
{
"name": "superhero-dashboard",
"private": true,
"scripts": {
"build": "gulp",
"start": "node ./bin/www",
"watch": "node --watch ./bin/www",
"debug": "node --inspect=0.0.0.0:9311 --watch ./bin/www",
"lint": "eslint ./bin ./controllers ./helpers ./test ./api.js ./app.js --ext .js --fix",
"test": "mocha 'test/**/*.js' --recursive --timeout 60000 --exit"
},
"engines": {
"node": "22",
"npm": ">=9"
},
"dependencies": {
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"express": "^4.18.2",
"express-session": "^1.17.3",
"fast-csv": "^4.3.6",
"handlebars": "^4.7.7",
"handlebars-layouts": "^3.1.4",
"handlebars-wax": "^6.1.0",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"maxmind": "^4.3.8",
"method-override": "^3.0.0",
"moment": "^2.29.4",
"moment-timezone": "^0.5.41",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"path.join": "^1.0.0",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"sanitize-html": "^2.10.0",
"sass": "^1.58.3",
"serve-favicon": "^2.5.0",
"showdown": "^2.1.0",
"string_decoder": "^1.3.0",
"string-strip-html": "^8.4.0",
"truncate-html": "^0.0.1",
"url": "^0.11.0"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"ajv": "^6.12.6",
"babel-core": "^6.26.3",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"chai": "^4.3.7",
"eslint": "^8.35.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-babel": "^7.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-count": "^1.0.0",
"gulp-filelog": "^0.4.1",
"gulp-header": "^2.0.9",
"gulp-imagemin": "^6.2.0",
"gulp-optimize-js": "^1.1.0",
"gulp-plumber": "^1.2.1",
"gulp-rimraf": "^1.0.0",
"gulp-sass": "^5.1.0",
"gulp-sass-grapher": "^1.0.0",
"gulp-uglify": "^3.0.2",
"mocha": "^10.2.0",
"pump": "^3.0.0",
"sinon": "^15.0.1",
"vinyl-map": "^1.0.2"
}
}