-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.7 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
48
49
50
51
52
53
54
55
56
57
58
{
"name": "crud-com-qualidade",
"version": "1.0.0",
"description": "Projeto criando um crud com qualidade",
"main": "index.js",
"scripts": {
"start:crud": "npx ts-node ./core/crud.ts",
"dev:crud": "nodemon --ext ts,tsx --exec 'yarn start'",
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "eslint './**/*.{jsx,jsx,ts,tsx}'",
"lint:fix": "yarn lint --fix",
"cy:open": "cypress open",
"cy:run": "cypress run",
"test": "start-server-and-test dev http://localhost:3000 cy:run",
"prisma-migrade-dev": "prisma migrate dev --name init",
"prisma:seed": "prisma db seed"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.8.3",
"@types/react": "18.2.20",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"cypress": "^13.3.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"start-server-and-test": "^2.0.1",
"ts-node": "^10.9.1"
},
"dependencies": {
"@prisma/client": "^5.4.2",
"next": "^13.5.4",
"prisma": "^5.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.2.2",
"uuid": "^9.0.0",
"zod": "^3.22.2"
}
}