-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·31 lines (31 loc) · 871 Bytes
/
package.json
File metadata and controls
executable file
·31 lines (31 loc) · 871 Bytes
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
{
"name": "spa-comments",
"version": "1.0.0",
"description": "TypeScript Fullstack SPA Comments Application",
"private": true,
"scripts": {
"install:all": "cd backend && npm install && cd ../frontend && npm install",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"build:frontend": "cd frontend && npm run build",
"create-superadmin:local": "cd backend && npm run create-superadmin:local",
"create-superadmin:docker": "cd backend && npm run create-superadmin:docker"
},
"keywords": [
"typescript",
"nestjs",
"react",
"mobx",
"socket.io",
"postgresql"
],
"author": "sk8",
"license": "MIT",
"dependencies": {
"@tanstack/react-virtual": "^3.13.10"
},
"devDependencies": {
"@types/socket.io-client": "^1.4.36",
"socket.io-client": "^4.8.1"
}
}