This repository has been archived by the owner on Feb 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
47 lines (47 loc) · 1.86 KB
/
package.json
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
{
"name": "ita-directory",
"private": true,
"version": "1.0.0",
"description": "ITA Directory",
"type": "module",
"scripts": {
"frontend": "cp .env.development ./frontend/.env && cd ./frontend && npm start",
"backend": "cp .env.development ./backend/.env && cd ./backend && npm run dev",
"e2e": "cp .env.development ./e2e/.env && cd ./e2e && npm run test",
"install-deps": "npm install && cd ./frontend && npm install && cd .. && cd ./backend && npm install",
"start-db": "cd ./scripts && source ./docker-utils.sh; launchPostgres",
"start-redis": "cd ./scripts && source ./docker-utils.sh; launchRedis",
"start-server": "cd ./scripts && bash up.sh",
"prisma-migrate": "cd ./backend && npx prisma migrate dev",
"prisma-seed": "node ./backend/prisma/seed.js",
"start-prisma": "npm run prisma-migrate && npm run prisma-seed",
"up": "cp .env.development ./backend/.env && npm run start-server && npm run start-prisma && npm run uml",
"down": "cd ./scripts && bash down.sh",
"postinstall": "husky install",
"prepare": "husky install && chmod ug+x .husky/*",
"lint": "./node_modules/.bin/eslint --max-warnings=0",
"uml": "cd ./backend && npx prisma-uml prisma/schema.prisma > db/schema-db.puml && npx prisma-uml -o png -f db/schema-db.png prisma/schema.prisma"
},
"repository": {
"type": "git",
"url": "git+https://github.com/it-academyproject/ita-directory-frontend.git"
},
"keywords": [
"react",
"node.js",
"prisma",
"directory",
"docusaurus"
],
"author": "Kevin Mamaqi Kapllani",
"license": "ISC",
"bugs": {
"url": "https://github.com/it-academyproject/ita-directory-frontend/issues"
},
"homepage": "https://github.com/it-academyproject/ita-directory-frontend#readme",
"devDependencies": {
"eslint": "8.17.0",
"eslint-plugin-vitest": "^0.0.25",
"husky": "6.0.0"
}
}