generated from JoviDeCroock/product-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.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
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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "test-partial-hydration",
"version": "1.0.0",
"scripts": {
"build": "rimraf dist && cross-env NODE_ENV=production webpack",
"dev": "cross-env NODE_ENV=development webpack-dev-server",
"start": "yarn build && node ./server.js"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-react-jsx": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-modules": "^0.1.4",
"@prefresh/babel-plugin": "^0.2.2",
"@prefresh/webpack": "^2.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-auto-import": "^1.1.0",
"babel-plugin-transform-jsx-to-htm": "^2.0.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cross-env": "^7.0.2",
"css-loader": "^4.3.0",
"csstype": "^3.0.3",
"encoding": "^0.1.13",
"file-loader": "^6.2.0",
"glob": "^7.1.6",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.0",
"mini-css-extract-plugin": "^0.11.2",
"polka": "^0.5.2",
"prettier": "^2.1.2",
"purgecss-webpack-plugin": "^3.0.0",
"rimraf": "^3.0.2",
"serialize-javascript": "^5.0.1",
"sirv": "^1.0.6",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^4.1.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@babel/runtime-corejs3": "7.12.1",
"core-js": "^3.6.5",
"htm": "^3.0.4",
"js-cookie": "^2.2.1",
"mitt": "^2.1.0",
"native-url": "^0.3.4",
"node-fetch": "^2.6.1",
"preact": "10.5.5",
"preact-render-to-string": "^5.1.11",
"preact-router": "^3.2.1",
"preact-ssr-prepass": "^1.1.2",
"tinytime": "^0.2.6"
},
"volta": {
"node": "14.12.0",
"yarn": "1.22.5"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --quiet --relative"
}
}
}