-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.54 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": "react-material-starter",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.8.0",
"@mui/material": "^5.8.1",
"@types/dagre": "^0.7.47",
"@zip.js/zip.js": "^2.4.20",
"dagre": "^0.8.5",
"localforage": "^1.10.0",
"next": "^12.1.6",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"recoil": "^0.7.3-alpha.2",
"typescript": "^4.3.5"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"postinstall": "patch-package",
"lint": "next lint"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@next/bundle-analyzer": "^12.1.6",
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^13.0.0",
"@types/jest": "^28.1.3",
"@types/node": "^17.0.35",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"eslint": "^8.16.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.5.3",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.1",
"jest-raw-loader": "^1.0.1",
"patch-package": "^6.4.7",
"raw-loader": "^4.0.2",
"ts-jest": "^28.0.5"
}
}