-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.79 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
59
60
{
"name": "crud-com-qualidade",
"version": "1.0.0",
"description": "Projeto CRUD com qualidade",
"main": "index.js",
"scripts": {
"start:crud": "npx ts-node ./core/crud.ts",
"dev:crud": "nodemon --ext ts,tsx --exec npm run start:crud",
"dev": "next dev -- --port=3029",
"build": "next build",
"start": "next start",
"lint": "eslint \"**/*.{ts,tsx}\"",
"lint:fix": "npm run lint -- --fix",
"cy:open": "cypress open",
"cy:run": "cypress run",
"test": "start-server-and-test dev http://localhost:3029 cy:run",
"clean": "rm -rf node_module"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ericanoronha/crudcomqualidade.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ericanoronha/crudcomqualidade/issues"
},
"homepage": "https://github.com/ericanoronha/crudcomqualidade#readme",
"devDependencies": {
"@types/node": "^20.4.5",
"@types/react": "18.2.18",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"cypress": "^13.1.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-cypress": "^2.13.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"nodemon": "^3.0.1",
"prettier": "^2.8.7",
"start-server-and-test": "^2.0.0"
},
"dependencies": {
"@supabase/supabase-js": "^2.33.1",
"encoding": "^0.1.13",
"next": "^13.4.19",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.1.6",
"uuid": "^9.0.0",
"zod": "^3.21.4"
}
}