forked from SHSGames/shsgames.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.8 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
{
"name": "shsgames",
"display-name": "SHS Games",
"version": "29.0.4",
"description": "Unblocked games • part of an inside job.",
"author": "Josh Merlino",
"license": "ISC",
"main": "lib/src",
"types": "lib/src",
"webserver": {
"http": {
"port": 80,
"timeout": 10
},
"https": {
"enabled": true,
"certs": "./ssl",
"port": 443
}
},
"engines": {
"node": "18.x"
},
"scripts": {
"watch-ts": "tsc -w -p tsconfig.node.json",
"watch-js": "nodemon .",
"preview": "vite preview",
"dev": "concurrently \"npm:watch-*\" \"vite\"",
"start": "node .",
"postbuild": "cd lib/src/buildtime; for i in *.js;do node \"$i\";done",
"build": "tsc -p tsconfig.node.json && tsc && vite build && cp public_html/index.html public_html/404.html"
},
"dependencies": {
"async-require-context": "^1.8.15",
"chalk": "^4.1.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"extract-zip": "^2.0.1",
"node-fetch": "2.x.x"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/jquery": "^3.5.14",
"@types/mkdirp": "^1.0.2",
"@types/node": "^18.11.15",
"@types/node-fetch": "^2.6.2",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/react-lazy-load-image-component": "^1.5.2",
"@types/setimmediate": "^1.0.2",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"@vitejs/plugin-react": "^3.0.0",
"chokidar": "^3.5.3",
"concurrently": "^7.6.0",
"eslint": "^8.29.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"jquery": "^3.6.2",
"lessc": "^1.0.2",
"mkdirp": "^1.0.4",
"nodemon": "^2.0.20",
"photoncss": "^13.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-fast-marquee": "^1.3.5",
"react-lazy-load-image-component": "^1.5.6",
"react-query": "^3.39.2",
"react-router-dom": "^6.4.5",
"setimmediate": "^1.0.5",
"typescript": "^4.9.4",
"uuid": "^9.0.0",
"vite": "^4.0.1",
"vite-plugin-html-config": "^1.0.11",
"vite-plugin-pwa": "^0.14.0",
"web-manifest-reader": "^1.2.3"
}
}