This repository was archived by the owner on Dec 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.31 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.31 KB
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
{
"name": "react-ssr-starter",
"version": "0.1.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "node scripts/webpack.js",
"clean": "rm -rdf ./build/* && rm -rdf ./public/assets/*",
"build": "node scripts/webpack.js",
"start": "node build/server.js",
"test": "NODE_ENV=test jest"
},
"dependencies": {
"@loadable/component": "^5.10",
"@loadable/server": "^5.10",
"emotion": "^10.0",
"emotion-server": "^10.0",
"koa": "^2.6",
"koa-static": "^5.0",
"react": "^16.13",
"react-dom": "^16.13",
"react-helmet-async": "^1.0.4",
"source-map-support": "^0.5"
},
"devDependencies": {
"@babel/core": "^7.0",
"@babel/plugin-syntax-dynamic-import": "^7.0",
"@babel/preset-env": "^7.0",
"@babel/preset-react": "^7.0",
"@loadable/babel-plugin": "^5.0",
"@loadable/webpack-plugin": "^5.0",
"babel-loader": "^8.0",
"babel-plugin-emotion": "^10.0",
"compression-webpack-plugin": "^2.0",
"dotenv-webpack": "^1.7",
"jest": "^23.6",
"jest-emotion": "^10.0",
"react-test-renderer": "^16.7",
"size-plugin": "^1.1",
"start-server-webpack-plugin": "^2.2",
"webpack": "^4.27",
"webpack-dev-server": "^3.1",
"webpack-merge": "^4.1",
"webpack-node-externals": "^1.7",
"webpackbar": "^3.1"
}
}