-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.72 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
{
"name": "super-og-images",
"version": "0.0.1",
"scripts": {
"dev": "next -p 3001",
"build": "next build",
"start": "next start",
"type-check": "tsc",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"format": "prettier '*/**/*.{js,ts,tsx}' --write",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/react": "^1.1.0",
"@chakra-ui/theme-tools": "^1.0.2",
"@emotion/react": "^11.0.0",
"@emotion/styled": "^11.0.0",
"@icons-pack/react-simple-icons": "^4.6.1",
"chrome-aws-lambda": "^10.1.0",
"framer-motion": "^3.1.1",
"next": "^12.0.5",
"node-html-to-image": "^3.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@next/bundle-analyzer": "^10.2.3",
"@types/node": "^14.6.4",
"@types/react": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"eslint-plugin-unused-imports": "^1.1.0",
"husky": "^7.0.0",
"lint-staged": "^10.5.1",
"prettier": "^2.1.1",
"typescript": "^4.3.5",
"webpack": "^5.24.2"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix --quiet"
]
},
"license": "MIT",
"cacheDirectories": [
".next/cache"
]
}