-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.04 KB
/
package.json
File metadata and controls
34 lines (34 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
33
34
{
"name": "new-code-case",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"dev": "concurrently \"cd backend && npm run dev\" \"cd frontend && npm run dev\" ",
"dpdm": "dpdm",
"scan": "npm run scan:frontend && npm run scan:backend",
"scan:frontend": "npm run dpdm ./frontend/src/App.tsx",
"scan:backend": "npm run dpdm ./backend/src/index.ts",
"submit": "git push smatter-push"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/node": "^20.11.17",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"dpdm": "^3.14.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-refresh": "^0.4.7",
"typescript": "^5.2.2"
},
"dependencies": {
"concurrently": "^8.2.2",
"nodemon": "^3.1.7",
"ts-node": "^10.9.2",
"vite": "^5.4.11",
"zod": "^3.22.4"
}
}