-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.65 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
{
"name": "app",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "dist/index.js",
"dependencies": {
"@chakra-ui/react": "^1.6.9",
"@emotion/react": "11",
"@emotion/styled": "11",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"canvas": "^2.8.0",
"esm": "^3.2.25",
"framer-motion": "4",
"imagemagick": "^0.1.3",
"mext": "^0.0.60",
"next": "^12.1.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"swr": "^1.3.0",
"web-vitals": "^1.0.1"
},
"devDependencies": {
"@types/imagemagick": "^0.0.31",
"@types/jest": "^26.0.15",
"@types/node": "^16.10.3",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.16.0",
"eslint-config-next": "^12.1.6",
"eslint-plugin-react": "^7.30.0",
"firebase": "^9.8.2",
"typescript": "^4.1.2"
},
"scripts": {
"dev": "next build && next dev",
"prebuild": "tsc -b && next lint",
"gen": "node --experimental-specifier-resolution=node --max_old_space_size=12288 build/gen/generate.js",
"start": "next start",
"lint": "next lint",
"build": "next build",
"runit": "next build && next start"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}