forked from zxlwq/notes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.42 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
{
"name": "notes",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:server": "node --env-file=.env server/index.js",
"build": "vite build",
"preview": "vite preview",
"start": "node server/index.js",
"type-check": "tsc --noEmit",
"type-check:js": "tsc --noEmit -p tsconfig.js.json",
"lint": "eslint . --no-cache",
"lint:fix": "eslint . --fix --no-cache",
"lint:css": "stylelint \"src/**/*.css\"",
"lint:css:fix": "stylelint \"src/**/*.css\" --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"parity:check": "node scripts/parity.js",
"check": "npm run type-check && npm run type-check:js && npm run lint && npm run lint:css && npm run format:check && npm run parity:check"
},
"dependencies": {
"@neondatabase/serverless": "^0.9.5",
"axios": "^1.6.0",
"bcryptjs": "^3.0.3",
"clsx": "^2.0.0",
"express": "^4.19.2",
"express-rate-limit": "^8.5.2",
"highlight.js": "^11.11.1",
"lucide-react": "^0.263.1",
"marked": "^18.0.5",
"mermaid": "^11.15.0",
"pg": "^8.11.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.0",
"react-router-dom": "^6.8.0",
"react-simplemde-editor": "^5.0.0",
"rehype-highlight": "^7.0.2",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"remark-highlight-mark": "^1.4.0",
"serve-static": "^1.15.0"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/bcryptjs": "^2.4.6",
"@types/express": "^4.17.21",
"@types/node": "^24.8.1",
"@types/pg": "^8.10.9",
"@types/react": "^18.3.26",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"@vitejs/plugin-react": "^4.2.0",
"autoprefixer": "^10.4.16",
"eslint": "^9.39.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"eslint-plugin-tailwindcss": "^3.18.3",
"globals": "^17.6.0",
"playwright": "^1.55.1",
"postcss": "^8.4.32",
"prettier": "^3.8.4",
"stylelint": "^17.13.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-config-tailwindcss": "^1.0.1",
"tailwindcss": "^3.3.6",
"typescript": "^5.4.0",
"vite": "^7.1.9",
"vite-plugin-pwa": "^1.3.0"
},
"overrides": {
"esbuild": "^0.28.1"
}
}