-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.08 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.08 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
{
"name": "playground",
"version": "1.3.4",
"private": true,
"scripts": {
"nodemon": "nodemon",
"start": "pm2 start pm2.json",
"dev": "cross-env NODE_ENV=development run-p nodemon watch",
"watch": "webpack --config=webpack.config.dev.ts",
"build": "webpack --config=webpack.config.prod.ts",
"lint": "eslint **/*.ts",
"test": "jest"
},
"dependencies": {
"animate.css": "^4.1.1",
"async-mutex": "^0.4.1",
"axios": "^1.6.5",
"bootstrap": "^5.3.2",
"bootstrap3": "npm:bootstrap@^3.4.1",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"dotenv": "^16.3.2",
"ejs": "^3.1.9",
"express": "^4.18.2",
"googleapis": "^131.0.0",
"mongoose": "^8.1.0",
"socket.io": "^4.7.4",
"socket.io-client": "^4.7.4",
"sweetalert2": "^11.10.3"
},
"devDependencies": {
"@types/bootstrap": "^5.2.10",
"@types/compression": "^1.7.5",
"@types/connect-livereload": "^0.6.3",
"@types/express": "^4.17.21",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.11",
"@types/livereload": "^0.9.5",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"autoprefixer": "^10.4.17",
"connect-livereload": "^0.6.1",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.9.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-only-warn": "^1.1.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"html-loader": "^5.0.0",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"livereload": "^0.9.3",
"mini-css-extract-plugin": "^2.7.7",
"nodemon": "^3.0.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.33",
"postcss-fail-on-warn": "^0.2.1",
"postcss-loader": "^8.0.0",
"purgecss-webpack-plugin": "^5.0.0",
"sass": "^1.70.0",
"sass-loader": "^14.0.0",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}