-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.13 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
69
70
71
72
73
74
75
76
77
78
{
"name": "nextjs_jest_2",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --watch --detectOpenHandles",
"migrate": "prisma migrate dev",
"generate": "prisma generate"
},
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@prisma/client": "^2.20.1",
"axios": "^0.21.1",
"express-validator": "^6.10.0",
"formidable": "^2.0.0-canary.20200504.1",
"material-table": "^1.69.2",
"next": "^10.1.2",
"next-auth": "^3.14.6",
"next-connect": "^0.10.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-markdown": "^5.0.3",
"react-tinacms-editor": "^0.39.0",
"react-tinacms-inline": "^0.38.0",
"slugify": "^1.5.0",
"styled-components": "^5.2.1",
"tinacms": "^0.37.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.8.3",
"@types/formidable": "^1.2.0",
"@types/jest": "^26.0.20",
"@types/next-auth": "^3.13.0",
"@types/node-fetch": "^2.5.8",
"@types/react": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.21.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.2.1",
"eslint-plugin-jest-dom": "^3.6.5",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^3.10.1",
"form-data": "^4.0.0",
"jest": "^26.6.3",
"node-fetch": "^2.6.1",
"prisma": "^2.20.1",
"sass": "^1.32.8",
"typescript": "^4.2.3"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/jest_setup/jest.setup.js"
],
"roots": [
"<rootDir>/src"
],
"moduleNameMapper": {
"^.+\\.(css|scss|sass)$": "<rootDir>/jest_setup/jest.css.stub.js"
}
},
"babel": {
"presets": [
"next/babel"
]
}
}