forked from Kattoor/aeternum-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.83 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
{
"name": "aeternum-map",
"private": true,
"scripts": {
"dev": "concurrently \"npm run server:dev\" \"npm run client:dev\"",
"overwolf:dev": "vite --config overwolf.config.js",
"client:dev": "vite",
"server:dev": "ts-node-dev --ignore-watch src/app --project tsconfig.server.json src/server",
"overwolf:build": "vite build --config overwolf.config.js",
"client:build": "vite build",
"server:build": "tsc --project tsconfig.server.json && cp -R src/assets dist/server/assets",
"build": "npm run server:build && npm run client:build && npm run overwolf:build",
"serve": "vite preview",
"prepare": "husky install",
"test": "tsc && prettier --check . && eslint . && stylelint \"**/*.css\"",
"test:fix": "tsc && prettier --write . && eslint --fix . && stylelint \"**/*.css\" --fix",
"start": "node dist/server/server.js"
},
"devDependencies": {
"@overwolf/types": "^3.16.0",
"@types/color-hash": "^1.0.2",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/etag": "^1.8.1",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/isomorphic-fetch": "^0.0.35",
"@types/leaflet": "^1.7.7",
"@types/multer": "^1.4.7",
"@types/node": "^17.0.4",
"@types/node-fetch": "^3.0.2",
"@types/node-os-utils": "^1.2.0",
"@types/passport": "^1.0.7",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/sharp": "^0.29.5",
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"@vitejs/plugin-react-refresh": "^1.3.6",
"concurrently": "^6.5.1",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"http-proxy-middleware": "^2.0.1",
"husky": "^7.0.4",
"lint-staged": "^12.1.4",
"prettier": "^2.5.1",
"stylelint": "^14.2.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^24.0.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.4",
"vite": "^2.7.6"
},
"dependencies": {
"@geoman-io/leaflet-geoman-free": "^2.11.4",
"color-hash": "^2.0.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"etag": "^1.8.1",
"express": "^4.17.2",
"express-session": "^1.17.2",
"isomorphic-fetch": "^3.0.0",
"leaflet": "^1.7.1",
"markdown-to-jsx": "^7.1.5",
"mongodb": "^4.2.2",
"multer": "^1.4.4",
"node-os-utils": "^1.3.5",
"passport": "^0.5.2",
"passport-steam": "^1.0.17",
"peerjs": "^1.3.2",
"plausible-tracker": "^0.3.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-toastify": "^8.1.0",
"sharp": "^0.29.3",
"socket.io": "^4.4.0",
"socket.io-client": "^4.4.0",
"tilelayer-canvas": "^1.1.3",
"uuid": "^8.3.2"
},
"engines": {
"npm": ">= 7.0.0",
"node": ">= 14.17.0"
}
}