-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) ยท 1.62 KB
/
package.json
File metadata and controls
63 lines (63 loc) ยท 1.62 KB
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
{
"name": "openoff-seo",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"commit": "./node_modules/cz-customizable/standalone.js"
},
"dependencies": {
"cz-customizable": "^7.0.0",
"file-saver": "2.0.5",
"framer-motion": "10.16.4",
"html2canvas": "1.4.1",
"next": "13.5.4",
"normalize.css": "8.0.1",
"react": "^18",
"react-copy-to-clipboard": "5.1.0",
"react-dom": "^18",
"react-hot-toast": "2.4.1",
"sharp": "0.32.6"
},
"devDependencies": {
"@svgr/webpack": "8.1.0",
"@types/file-saver": "2.0.6",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-copy-to-clipboard": "5.0.6",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "8.2.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-next": "13.5.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "7.28.0",
"husky": "^8.0.0",
"lint-staged": "^14.0.1",
"postcss": "8.4.31",
"prettier": "^3.0.3",
"sass": "1.69.5",
"typescript": "^5",
"typescript-plugin-css-modules": "5.0.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"config": {
"cz-customizable": {
"config": "cz-config.js"
}
}
}