forked from MileTwo/nextjs-ts-prisma-rest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.4 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
61
62
63
64
65
66
67
68
{
"name": "nextjs-typescript-material-ui-eslint-jest",
"version": "1.0.1",
"private": true,
"dependencies": {
"@babel/eslint-parser": "^7.16.3",
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@mui/material": "^5.1.0",
"@mui/styles": "^5.1.0",
"@prisma/client": "^3.4.2",
"jest-esm-transformer": "^1.0.0",
"jest-mock-extended": "^2.0.4",
"next": "^12.0.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.19.2",
"swr": "^1.0.1"
},
"scripts": {
"build": "next build",
"dev": "concurrently \"next dev\" \"npm run type-check:watch\"",
"format": "prisma format && prettier --write . && eslint --fix .",
"lint": "next lint",
"start": "next start",
"test": "jest",
"type-check": "tsc",
"type-check:watch": "tsc --watch --preserveWatchOutput",
"quality": "npm run type-check && npm run lint && npm run test",
"generate": "prisma generate",
"migrate": "prisma migrate dev",
"deploy": "prisma migrate deploy",
"reset": "prisma migrate reset",
"seed": "ts-node prisma/seed.ts",
"studio": "prisma studio",
"prisma": "prisma format && npm run migrate && npm run seed",
"prepare": "husky install"
},
"devDependencies": {
"@axe-core/react": "^4.3.1",
"@babel/core": "^7.16.0",
"@babel/node": "^7.16.0",
"@babel/plugin-transform-typescript": "^7.16.1",
"@babel/preset-env": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@next/eslint-plugin-next": "^12.0.3",
"@testing-library/dom": "^8.11.0",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@types/node": "^16.11.7",
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"babel-jest": "^27.3.1",
"concurrently": "^6.4.0",
"eslint": "^7.32.0",
"eslint-config-next": "12.0.3",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"prisma": "^3.4.2",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}