-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.09 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.09 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "pds",
"version": "0.0.1",
"description": "Esse projeto é um projeto de desenvolvimento de software para ajudar as pessoas a serem mais produtivas.",
"author": "Bruno César Angst",
"license": "MIT",
"homepage": "https://github.com/BrunoCesarAngst/pds#readme",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/BrunoCesarAngst/pds.git"
},
"bugs": {
"url": "https://github.com/BrunoCesarAngst/pds/issues",
"email": "bruno.angst@rede.ulbra.br"
},
"keywords": [
"browser"
],
"scripts": {
"start_u": "docker-compose up -d",
"build_d": "docker-compose build",
"delete_d": "npm run stop && npm run clean:volumes",
"stop": "docker-compose down",
"clean": "docker system prune -af",
"clean:volumes": "docker volume prune -f",
"seed": "docker exec -it prisma npm run seed",
"dev_d": "next dev",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"docker": "docker-compose up --build --force-recreate",
"dockerP": "docker-compose -f docker-compose.prod.yml up --build --force-recreate",
"docker_b": "docker build -t mysys .",
"docker_r": "docker run -p 3000:3000 mysys",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@headlessui/react": "^1.6.6",
"@heroicons/react": "^1.0.6",
"@prisma/client": "4.0.0",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/typography": "^0.5.4",
"dotenv": "16.0.1",
"flowbite": "^1.4.7",
"flowbite-react": "^0.1.3",
"next": "12.2.2",
"next-auth": "^4.10.0",
"next-themes": "^0.2.0",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.2",
"@types/node": "18.0.3",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"autoprefixer": "^10.4.7",
"eslint": "8.19.0",
"eslint-config-next": "12.2.2",
"postcss": "^8.4.14",
"prisma": "4.0.0",
"tailwindcss": "^3.1.6",
"typescript": "4.7.4"
},
"prisma": {
"schema": "prisma/schema.prisma"
}
}