-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.01 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
{
"name": "nextjs-preact-demo",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build && next export -o build",
"start": "NODE_ENV=production next start",
"format": "yarn test:lint --fix",
"test:types": "tsc",
"test:lint": "tslint 'src/**/*.{ts,tsx}'"
},
"devDependencies": {
"@prefresh/next": "^1.3.0",
"@types/node": "^14.11.10",
"@types/react": "^16.9.53",
"react-refresh": "^0.8.3"
},
"dependencies": {
"next": "^9.5.5",
"next-compose-plugins": "^2.2.0",
"next-optimized-images": "^2.6.2",
"preact": "^10.5.5",
"preact-render-to-string": "^5.1.10",
"prettier": "^2.1.2",
"react": "npm:@preact/compat@^0.0.3",
"react-dom": "npm:@preact/compat@^0.0.3",
"react-ssr-prepass": "npm:preact-ssr-prepass@^1.1.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-plugin-prettier": "^2.3.0",
"tslint-react": "^5.0.0",
"typescript": "^4.0.3"
},
"license": "MIT"
}