-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@effector/vike-react-template",
"private": true,
"version": "23.0.0",
"description": "Template for quickly starting a SSR Node.js application with vite, react, effector, and fastify",
"packageManager": "[email protected]+sha256.46f1bbc8f8020aa9869568c387198f1a813f21fb44c82f400e7d1dbde6c70b40",
"scripts": {
"dev": "node --no-warnings --loader ts-node/esm server/index.ts",
"start": "cross-env NODE_ENV=production pnpm run server",
"server": "node ./dist/cli/index",
"build": "vite build && tsc -p server",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --max-warnings 0",
"format": "prettier --write '*'"
},
"repository": "https://github.com/effector/vike-react-template",
"type": "module",
"keywords": [
"react",
"typescript",
"vite",
"vike",
"effector",
"fastify",
"starter",
"boilerplate",
"template"
],
"author": "Sergey Sova <[email protected]> (https://sova.sh)",
"license": "MIT",
"engines": {
"node": ">=18.6.0"
},
"dependencies": {
"@effector/reflect": "^9.2.0",
"@fastify/accepts": "^4.3.0",
"@fastify/compress": "^7.0.3",
"@fastify/cookie": "^9.3.1",
"@fastify/cors": "^9.0.1",
"@fastify/early-hints": "^1.0.1",
"@fastify/helmet": "^11.1.1",
"@fastify/rate-limit": "^9.1.0",
"@fastify/static": "^7.0.4",
"compression": "^1.7.4",
"dotenv": "^16.4.5",
"effector": "^23.2.2",
"effector-factorio": "^1.3.0",
"effector-react": "^23.2.1",
"fastify": "^4.28.1",
"patronum": "^2.2.0",
"pino": "^9.3.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"vike": "0.4.184",
"vike-react": "^0.5.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@babel/parser": "^7.25.3",
"@babel/plugin-syntax-import-attributes": "^7.24.7",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/compression": "^1.7.5",
"@types/node": "^22.3.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"cross-env": "^7.0.3",
"pino-pretty": "^11.2.2",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"vite": "^5.4.1",
"vite-plugin-svgr": "^4.2.0"
}
}