-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
36 lines (36 loc) · 884 Bytes
/
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
{
"private": true,
"scripts": {
"dev": "NODE_OPTIONS=--openssl-legacy-provider && next dev",
"build": "next build",
"start": "NODE_OPTIONS=--openssl-legacy-provider && next start",
"prepare": "husky install",
"pre-commit": "lint-staged",
"test": "echo 'triggering a test script'"
},
"dependencies": {
"html2canvas": "^1.3.2",
"next": "latest",
"next-seo": "^4.27.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-debounce-input": "^3.2.5",
"react-icons": "^4.2.0",
"swr": "^1.0.0",
"use-react-screenshot": "^1.0.2"
},
"devDependencies": {
"autoprefixer": "^10.2.6",
"husky": ">=6",
"lint-staged": ">=10",
"postcss": "^8.3.5",
"prettier": "2.4.1",
"tailwindcss": "^2.2.4"
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
},
"engines" : {
"node" : "18.x"
}
}