-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.59 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.59 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "2026-boilerplate",
"description": "a local-first web app boilerplate for 2026",
"author": "BishopZ",
"private": true,
"version": "1.2.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bishopz/2026-boilerplate"
},
"type": "module",
"scripts": {
"dev": "nodemon -w src/server -x tsx --env-file .env src/server/main.ts",
"build": "tsc -b && vite build",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"gen:skills-index": "node ./scripts/generate-skills-index.mjs",
"check:i18n": "node ./scripts/check-i18n-keys.mjs",
"preview": "vite preview",
"start": "NODE_ENV=production tsx src/server/main.ts",
"type-check": "tsc --noEmit",
"test": "npm run lint && npm run type-check && npm run test:e2e",
"test:e2e": "cypress run",
"test:e2e:open": "cypress open"
},
"dependencies": {
"@chakra-ui/react": "3.33.0",
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.1",
"@reduxjs/toolkit": "2.11.2",
"cookie-parser": "1.4.7",
"ejs": "3.1.10",
"express": "5.2.1",
"express-rate-limit": "^8.3.1",
"framer-motion": "12.34.3",
"jsonwebtoken": "9.0.3",
"next-themes": "0.4.6",
"passport": "0.7.0",
"passport-local": "1.0.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-error-boundary": "6.1.1",
"react-icons": "5.5.0",
"react-intl": "8.1.3",
"react-redux": "9.2.0",
"react-router": "7.13.1",
"tsx": "4.21.0",
"typescript": "5.9.3",
"vite-express": "0.22.1"
},
"devDependencies": {
"@eslint/js": "9.37.0",
"@stylistic/eslint-plugin": "5.9.0",
"@types/cookie-parser": "1.4.10",
"@types/ejs": "3.1.5",
"@types/express": "5.0.6",
"@types/jsonwebtoken": "9.0.10",
"@types/node": "24.7.2",
"@types/passport": "1.0.17",
"@types/passport-local": "1.0.38",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "5.1.4",
"cypress": "15.10.0",
"eslint": "9.37.0",
"eslint-plugin-react-dom": "2.13.0",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-refresh": "0.5.2",
"eslint-plugin-react-x": "2.13.0",
"globals": "17.3.0",
"nodemon": "3.1.14",
"typescript-eslint": "8.56.1",
"vite": "7.3.1",
"vite-tsconfig-paths": "6.1.1"
},
"engines": {
"node": ">=24.13.1",
"npm": ">=11.10.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}