-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.64 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.64 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
{
"name": "Codex",
"version": "2.24.2",
"description": "Your Personal Wiki and Document Store",
"private": true,
"workspaces": [
"server",
"client"
],
"scripts": {
"install:all": "npm install && cd server && npm install && cd ../client && npm install",
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "cd server && npm run dev",
"dev:client": "cd client && npm run dev",
"build": "cd server && npm run build && cd ../client && npm run build",
"test": "npm run test:server && npm run test:client",
"test:server": "cd server && npm test",
"test:client": "cd client && npm test",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"release": "commit-and-tag-version",
"release:minor": "commit-and-tag-version --release-as minor",
"release:major": "commit-and-tag-version --release-as major"
},
"dependencies": {
"@types/node": "^25.5.0",
"@types/supertest": "^7.2.0",
"axios": "^1.14.0",
"bcrypt": "^6.0.0",
"express-rate-limit": "^8.3.1",
"express-session": "^1.19.0",
"helmet": "^8.1.0",
"lucide-react": "^1.7.0",
"morgan": "^1.10.1",
"simple-git": "^3.33.0",
"zustand": "^5.0.12"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@types/bcrypt": "^6.0.0",
"@types/express-session": "^1.18.2",
"@types/morgan": "^1.9.10",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"commit-and-tag-version": "^12.7.1",
"concurrently": "^9.2.1",
"eslint": "^10.1.0",
"globals": "^17.4.0"
}
}