-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
112 lines (112 loc) · 4.04 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "react-firebase-ssr",
"description": "React template with SSR by using Firebase",
"main": "index.js",
"scripts": {
"createfirebaseconf": "firebase setup:web --json > ../functions/firebase-config.json",
"start:emulators": "firebase emulators:start --only functions,hosting",
"start:serve": "firebase serve --only functions,hosting",
"shell": "firebase functions:shell",
"start": "webpack-dev-server --env csr",
"build:ssr": "cross-env NODE_ENV=production webpack --env ssr",
"build:csr": "cross-env NODE_ENV=production webpack --env csr",
"deploy": "firebase deploy",
"test": "npm test",
"cz": "$(npm bin)/git-cz",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/ridermansb/react-firebase-ssr.git"
},
"keywords": [
"react",
"firebase",
"ssr"
],
"author": "ridermansb <ridermansb@gmail.com>",
"license": "ISC",
"dependencies": {
"dayjs": "^1.10.7",
"firebase": "^9.0.2",
"offline-plugin": "^5.0.7",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"uikit": "^3.7.3"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-arrow-functions": "^7.14.5",
"@babel/plugin-transform-async-to-generator": "^7.14.5",
"@babel/plugin-transform-modules-commonjs": "^7.15.4",
"@babel/plugin-transform-react-display-name": "^7.15.1",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@babel/plugin-transform-react-jsx-source": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/runtime": "^7.15.4",
"@babel/runtime-corejs3": "^7.15.4",
"@hot-loader/react-dom": "^17.0.1",
"@semantic-release/github": "^7.2.3",
"@webpack-cli/serve": "^1.5.2",
"autoprefixer": "^10.3.4",
"babel-loader": "^8.2.2",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-syntax-async-functions": "^6.13.0",
"commitizen": "^4.1.2",
"compression-webpack-plugin": "^9.0.0",
"copy-webpack-plugin": "^9.0.1",
"core-js": "^3.17.3",
"cross-env": "^7.0.3",
"css-loader": "^6.2.0",
"cssnano": "^5.0.8",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^10.0.0",
"favicons-webpack-plugin": "^5.0.2",
"file-loader": "^6.2.0",
"firebase-tools": "^9.18.0",
"git-cz": "^4.7.6",
"git-revision-webpack-plugin": "^5.0.0",
"glob": "^7.1.7",
"html-webpack-plugin": "^5.3.2",
"husky": "^7.0.2",
"imagemin-webpack-plugin": "^2.1.5",
"lighthouse": "^8.4.0",
"lighthouse-plugin-field-performance": "^2.2.1",
"mini-css-extract-plugin": "^2.3.0",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"postcss-loader": "^6.1.1",
"postcss-safe-parser": "^6.0.0",
"react-hot-loader": "^4.13.0",
"robotstxt-webpack-plugin": "^7.0.0",
"script-ext-html-webpack-plugin": "^2.1.5",
"semantic-release": "^19.0.3",
"sharp": "^0.30.5",
"terser-webpack-plugin": "^5.2.4",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.2.1",
"webpack-merge": "^5.8.0",
"webpack-node-externals": "^3.0.0",
"webpack-pwa-manifest": "^4.2.0"
},
"engines": {
"node": "12"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
}
}