-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.04 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.04 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
{
"name": "commonly",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "docker-compose up",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm start",
"lint": "npm run lint:backend && npm run lint:frontend",
"lint:backend": "cd backend && npm run lint",
"lint:frontend": "cd frontend && npm run lint",
"lint:fix": "npm run lint:fix:backend && npm run lint:fix:frontend",
"lint:fix:backend": "cd backend && npm run lint:fix",
"lint:fix:frontend": "cd frontend && npm run lint:fix",
"prepare": "husky"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@types/node": "^25.0.10",
"husky": "^9.0.11",
"lint-staged": "^16.0.0",
"wait-on": "^9.0.4"
},
"lint-staged": {
"backend/{routes/auth.js,routes/integrations.js,routes/pods.js,middleware/auth.js,models/User.js,controllers/*.js}": [
"./backend/node_modules/.bin/eslint --fix"
],
"frontend/src/**/*.{js,jsx}": [
"./frontend/node_modules/.bin/eslint --fix"
]
}
}