generated from rjoydip-zz/next-ts-preact-pwa
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.16 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
{
"name": "beauop",
"version": "1.0.0",
"license": "ISC",
"title": "Automatic event blog publisher",
"scripts": {
"lint": "tsc",
"dev": "next",
"build": "next build",
"start": "next start",
"clean": "rm -rf .next .vercel *.lock index.css node_modules/.cache",
"all": "yarn clean && yarn lint && yarn build"
},
"dependencies": {
"dayjs": "^1.8.30",
"next": "latest",
"preact": "^10.4.1",
"preact-render-to-string": "^5.1.6",
"react": "github:preact-compat/react#1.0.0",
"react-dom": "github:preact-compat/react-dom#1.0.0",
"react-icons": "^3.10.0",
"react-ssr-prepass": "npm:preact-ssr-prepass@^1.0.1",
"styled-components": "^5.1.0",
"tailwindcss": "^1.4.1"
},
"devDependencies": {
"@types/node": "^13.13.4",
"@types/styled-components": "5.0.1",
"autoprefixer": "^9.7.6",
"babel-plugin-styled-components": "^1.10.0",
"cross-env": "^7.0.2",
"cssnano": "^4.1.10",
"husky": "^4.2.5",
"next-compose-plugins": "^2.2.0",
"postcss-cli": "^7.1.1",
"postcss-import": "^12.0.1",
"typescript": "3.5.2"
},
"husky": {
"hooks": {
"pre-commit": "yarn all"
}
}
}