generated from stevefrenzel/thankyounext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 977 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
37
38
39
40
41
{
"name": "thankyounext",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "yarn tsc",
"prepare": "husky install"
},
"dependencies": {
"autoprefixer": "^10.4.0",
"husky-init": "^7.0.0",
"next": "^12.0.7",
"next-plugin-preact": "^3.0.6",
"postcss": "^8.4.4",
"preact": "^10.6.4",
"preact-render-to-string": "^5.1.19",
"react": "npm:@preact/compat",
"react-dom": "npm:@preact/compat",
"react-ssr-prepass": "npm:preact-ssr-prepass",
"scheduler": "^0.20.2",
"tailwindcss": "^3.0.0"
},
"devDependencies": {
"@types/node": "16.11.12",
"@types/react": "17.0.37",
"eslint": "8.4.1",
"eslint-config-next": "12.0.7",
"husky": "^7.0.0",
"typescript": "4.5.3"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"printWidth": 80
}
}