-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.18 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
{
"name": "crud",
"version": "1.0.0",
"description": "Projeto criando um CRUD com qualidade",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint-old": "next lint",
"lint": "eslint ./**/*.{jsx,jsx,ts,tsx}",
"lint:fix": "npm run lint -- --fix",
"start:crud": "npx ts-node ./core/crud.ts",
"dev:crud": "nodemon --ext ts,tsx --exec \"npm run start:crud\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.11.5",
"@types/react": "18.2.48",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"nodemon": "^3.0.3",
"prettier": "^2.8.7"
},
"dependencies": {
"next": "^14.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.3.3",
"uuid": "^9.0.1",
"zod": "^3.22.4"
}
}