-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.7 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.7 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
{
"name": "sistem-pos",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"//": "--- PERINTAH UNTUK MENJALANKAN KEDUANYA SEKALIGUS ---",
"dev": "concurrently \"npm:dev:fe\" \"npm:dev:be\"",
"//": "--- PERINTAH KHUSUS FRONTEND ---",
"dev:fe": "npm run dev --prefix frontend",
"build:fe": "npm run build --prefix frontend",
"lint:fe": "npm run lint --prefix frontend",
"//": "--- PERINTAH KHUSUS BACKEND ---",
"dev:be": "npm run dev --prefix backend",
"build:be": "npm run build --prefix backend",
"start:be": "npm run start --prefix backend",
"migrate:be": "npm run prisma:migrate --prefix backend",
"studio:be": "npm run prisma:studio --prefix backend"
},
"dependencies": {
"react": "^19.1.1",
"react-dom": "^19.1.1",
"@prisma/client": "^5.14.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@tailwindcss/vite": "^4.1.14",
"@types/react": "^19.1.16",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.4",
"eslint": "^9.36.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.22",
"globals": "^16.4.0",
"react-icons": "^5.5.0",
"tailwindcss": "^4.1.14",
"vite": "^7.1.7",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.12.12",
"prisma": "^5.14.0",
"rimraf": "^5.0.7",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5",
"concurrently": "^8.2.2"
}
}