-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.2 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.2 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
{
"private": true,
"name": "devvit-hello-world-experimental",
"version": "0.0.0",
"license": "BSD-3-Clause",
"type": "module",
"scripts": {
"build:client": "cd src/client && vite build",
"build:server": "cd src/server && vite build",
"build": "npm run build:client && npm run build:server",
"deploy": "npm run build && devvit upload",
"dev": "concurrently -k -p \"[{name}]\" -n \"CLIENT,SERVER,DEVVIT\" -c \"blue,green,magenta\" \"npm run dev:client\" \"npm run dev:server\" \"npm run dev:devvit\"",
"dev:client": "cd src/client && vite build --watch",
"dev:devvit": "dotenv -e .env -- devvit playtest",
"dev:server": "cd src/server && vite build --watch",
"login": "devvit login",
"test": "cd src/server && vitest run",
"launch": "npm run build && npm run deploy && devvit publish",
"type-check": "tsc --build"
},
"dependencies": {
"@devvit/web": "0.12.7",
"devvit": "0.12.7",
"express": "5.1.0"
},
"devDependencies": {
"@vitest/coverage-v8": "4.0.16",
"@devvit/test": "0.12.7",
"@types/express": "5.0.1",
"concurrently": "9.1.2",
"dotenv-cli": "8.0.0",
"typescript": "5.8.2",
"vite": "7.3.1",
"vitest": "4.0.16"
}
}