-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.77 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
{
"name": "go-code-remote",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"start": "npm-run-all --parallel watch:serverLog watch:build watch:tsc",
"watch:build": "webpack --watch",
"watch:server": "nodemon bin/www.js --watch \"./client/dist\"",
"watch:serverLog": "node bin/www.js --inspect",
"watch:tsc": "tsc -w",
"compile": "tsc",
"test": "jest",
"build": "webpack --config webpack.prod.js"
},
"dependencies": {
"@babel/cli": "^7.23.9",
"@babel/node": "^7.23.9",
"@babel/preset-env": "^7.24.0",
"@babel/preset-react": "^7.23.3",
"@types/compression": "^1.7.5",
"@types/cookie-parser": "^1.4.7",
"@types/errorhandler": "^1.5.3",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/follow-redirects": "^1.14.4",
"@types/node": "^20.11.30",
"@types/passport": "^1.0.16",
"@types/pug": "^2.0.10",
"@types/react-dom": "^18.2.23",
"@types/react-router": "^5.1.20",
"@types/sequelize": "^4.28.20",
"@types/serve-favicon": "^2.5.7",
"bcrypt-nodejs": "^0.0.3",
"compression": "^1.7.4",
"connect-session": "^0.0.1",
"connect-session-sequelize": "^7.1.7",
"cookie-parser": "^1.4.6",
"dotenv": "^16.4.5",
"errorhandler": "^1.5.1",
"express": "^4.18.2",
"express-session": "^1.18.0",
"follow-redirects": "^1.15.6",
"mysql": "^2.18.1",
"mysql2": "^3.9.2",
"nodemon": "^3.1.0",
"npm-run-all": "^4.1.5",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"passport-local-sequelize": "^0.9.1",
"pug": "^3.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sequelize": "^6.37.1",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"@babel/plugin-syntax-flow": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@tsconfig/recommended": "^1.0.3",
"@types/bcrypt-nodejs": "^0.0.31",
"@types/expect-puppeteer": "^5.0.6",
"@types/jest": "^29.5.12",
"@types/jest-environment-puppeteer": "^5.0.6",
"@types/passport-local": "^1.0.38",
"@types/puppeteer": "^7.0.4",
"eslint-plugin-react": "^7.34.1",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.0",
"gulp-css-url-adjuster": "^0.2.3",
"gulp-filter": "^4.0.0",
"gulp-minify-css": "^1.2.4",
"gulp-ng-annotate": "^2.0.0",
"gulp-ngmin": "^0.3.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.5.4",
"gulp-util": "^3.0.7",
"jest": "^29.7.0",
"jest-puppeteer": "^10.0.1",
"puppeteer": "^22.4.1",
"sequelize-cli": "^6.6.2",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2",
"wdio-sauce-service": "^0.2.4",
"webpack": "^5.90.3",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.2"
}
}