-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.22 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
{
"name": "word-memorization",
"version": "1.0.0",
"description": "for https://www.youtube.com/watch?v=HD79q6aXjPA",
"main": "src/back/index.ts",
"type": "module",
"scripts": {
"build": "npm-run-all --parallel build:client build:server",
"build:client": "vite build --ssrManifest --outDir dist/client",
"build:server": "vite build --ssr entry-server.tsx --outDir dist/server",
"dev:back": "tsx watch --ignore ./ src/back/index.ts",
"dev:csr": "vite",
"dev:ssr": "tsx src/back/frontDevServer.ts",
"dev": "npm-run-all --parallel dev:back dev:csr",
"production:back": "cross-env NODE_ENV=production tsx src/back/index.ts",
"preview": "npm-run-all --serial build production:back",
"deploy": "npm-run-all --serial prisma:generate prisma:deploy preview",
"deploy:withoutShadow": "npm-run-all --serial prisma:generate prisma:push preview",
"prisma:push": "prisma db push",
"prisma:generate": "prisma generate",
"prisma:migrate:dev": "prisma migrate dev --name init --preview-feature",
"prisma:deploy": "prisma migrate deploy --preview-feature"
},
"author": "Raipen",
"license": "ISC",
"dependencies": {
"@fastify/cookie": "^9.3.1",
"@fastify/middie": "^8.3.0",
"@fastify/static": "^7.0.1",
"@fastify/swagger": "^8.14.0",
"@fastify/swagger-ui": "^3.0.0",
"@prisma/client": "^5.11.0",
"axios": "^1.6.7",
"dotenv": "^16.4.1",
"fastify": "^4.26.0",
"fastify-schema-to-ts": "^1.0.1",
"json-bigint": "^1.0.0",
"jsonwebtoken": "^9.0.2",
"npm-run-all": "^4.1.5",
"qs": "^6.12.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.22.1",
"styled-components": "^6.1.8"
},
"devDependencies": {
"@types/json-bigint": "^1.0.4",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.11.16",
"@types/qs": "^6.9.14",
"@types/react": "^18.2.60",
"@types/react-dom": "^18.2.19",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.34",
"@vitejs/plugin-react": "^4.2.1",
"cross-env": "^7.0.3",
"prisma": "^5.11.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vite-tsconfig-paths": "^4.3.1"
}
}