-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.62 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
{
"name": "remote-resistance",
"version": "1.0.0",
"description": "Play Resistance with your friends anywhere – a real-time remote version of the game.",
"scripts": {
"build": "npm run clean && vite build",
"clean": "rm -rf dist && rm -rf .cache",
"injectHistory": "ts-node ./server/injectHistory.ts",
"lint": "svelte-check",
"setup": "cp .env.sample .env && npm install",
"prod": "ts-node ./server/index.ts",
"prodLike": "npm run clean && VITE_CORS_ORIGIN_URL='' vite build && npm run prod",
"start": "vite & ts-node ./server/index.ts",
"test": "jest --watch"
},
"engines": {
"node": "^14.18",
"npm": "^8.3"
},
"author": "bholtbholt",
"license": "UNLICENSED",
"dependencies": {
"@sveltejs/vite-plugin-svelte": "^1.0.0-next.38",
"@tsconfig/svelte": "^3.0.0",
"@types/express": "^4.17.13",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"helmet": "^5.0.2",
"heroku-ssl-redirect": "^0.1.1",
"nanoid": "^3.3.1",
"redis": "^4.0.4",
"socket.io": "^4.4.1",
"socket.io-client": "^4.4.1",
"svelte": "^3.49.0",
"svelte-preprocess": "^4.10.4",
"ts-node": "^10.6.0",
"typescript": "^4.6.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/svelte": "^3.0.3",
"@types/jest": "^27.4.1",
"autoprefixer": "^10.4.2",
"core-js": "^3.21.1",
"jest": "^27.5.1",
"postcss": "^8.4.7",
"prettier": "^2.5.1",
"prettier-plugin-svelte": "^2.6.0",
"svelte-check": "^2.4.5",
"svelte-jester": "^2.3.2",
"tailwindcss": "^3.0.23",
"ts-jest": "^27.1.3",
"vite": "^2.9.13"
}
}