-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.29 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
{
"name": "playground",
"version": "1.3.4",
"private": true,
"type": "module",
"scripts": {
"nodemon": "nodemon",
"start": "cross-env NODE_ENV=production tsx app.ts",
"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.5.0",
"axios": "1.16.1",
"bootstrap": "5.3.8",
"bootstrap3": "npm:bootstrap@3.4.1",
"compression": "1.8.1",
"cross-env": "10.1.0",
"dotenv": "17.4.2",
"ejs": "5.0.2",
"express": "5.2.1",
"googleapis": "172.0.0",
"mongoose": "9.6.2",
"socket.io": "4.8.3",
"socket.io-client": "4.8.3",
"sweetalert2": "11.26.25"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "10.0.1",
"@stylistic/eslint-plugin": "5.10.0",
"@tailwindcss/postcss": "4.3.0",
"@types/bootstrap": "5.2.10",
"@types/compression": "1.8.1",
"@types/connect-livereload": "0.6.3",
"@types/express": "5.0.6",
"@types/jest": "30.0.0",
"@types/livereload": "0.9.5",
"@types/node": "25.9.1",
"@typescript-eslint/eslint-plugin": "8.59.4",
"@typescript-eslint/parser": "8.59.4",
"autoprefixer": "10.5.0",
"connect-livereload": "0.6.1",
"copy-webpack-plugin": "14.0.0",
"css-loader": "7.1.4",
"eslint": "10.4.0",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-only-warn": "1.2.1",
"fork-ts-checker-webpack-plugin": "9.1.0",
"glob": "13.0.6",
"html-loader": "5.1.0",
"html-webpack-plugin": "5.6.7",
"jest": "30.4.2",
"livereload": "0.10.3",
"mini-css-extract-plugin": "2.10.2",
"nodemon": "3.1.14",
"npm-run-all": "4.1.5",
"postcss": "8.5.15",
"postcss-fail-on-warn": "0.2.1",
"postcss-loader": "8.2.1",
"purgecss-webpack-plugin": "8.0.0",
"sass": "1.100.0",
"sass-loader": "17.0.0",
"tailwindcss": "4.3.0",
"ts-jest": "29.4.11",
"ts-loader": "9.5.7",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"tsconfig-paths-webpack-plugin": "4.2.0",
"tsx": "4.22.3",
"webpack": "5.107.1",
"webpack-cli": "7.0.2"
}
}