-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
69 lines (69 loc) · 2.2 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
{
"name": "ssr-starter-pack",
"private": true,
"version": "1.0.0",
"engines": {
"node": "10.11.0",
"npm": "6.4.1",
"yarn": ">= 1.9.4"
},
"dependencies": {
"@babel/polyfill": "7.0.0",
"body-parser": "1.18.3",
"compression": "1.7.3",
"consolidate": "0.15.1",
"express": "4.16.4",
"gatsby-image": "2.0.20",
"handlebars": "4.0.12",
"prop-types": "15.6.2",
"react": "16.6.3",
"react-dom": "16.6.3",
"react-helmet": "5.2.0",
"react-router-config": "1.0.0-beta.4",
"react-router-dom": "4.3.1"
},
"devDependencies": {
"@babel/core": "7.1.6",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-syntax-dynamic-import": "7.0.0",
"@babel/plugin-transform-react-jsx-source": "7.0.0",
"@babel/preset-env": "7.1.6",
"@babel/preset-react": "7.0.0",
"@babel/preset-typescript": "7.1.0",
"@brigad/ideal-image-loader": "1.0.0",
"autoprefixer": "9.3.1",
"babel-core": "7.0.0-bridge.0",
"babel-loader": "8.0.4",
"circular-dependency-plugin": "5.0.2",
"cross-env": "5.2.0",
"css-loader": "1.0.1",
"file-loader": "2.0.0",
"mini-css-extract-plugin": "0.4.4",
"node-sass": "4.10.0",
"optimize-css-assets-webpack-plugin": "5.0.1",
"postcss-flexbugs-fixes": "4.1.0",
"postcss-loader": "3.0.0",
"sass-loader": "7.1.0",
"terser-webpack-plugin": "1.1.0",
"typescript": "3.1.6",
"webpack": "4.26.0",
"webpack-bundle-analyzer": "3.0.3",
"webpack-cli": "3.1.2",
"webpack-dev-middleware": "3.4.0",
"webpack-hot-middleware": "2.24.3",
"webpack-hot-server-middleware": "0.5.0",
"webpack-manifest-plugin": "2.0.4",
"webpack-merge": "4.1.4",
"webpack-node-externals": "1.7.2",
"webpack-notifier": "1.7.0",
"webpackbar": "2.6.3"
},
"scripts": {
"build": "cross-env NODE_ENV=production ASSETS_URL=https://your-cdn.com/ webpack --config webpack.config.js",
"build:local": "cross-env NODE_ENV=production LOCAL=true webpack --config webpack.config.js",
"build:clean": "rm -rf public/dist && cd public && mkdir dist",
"modules:clean": "rm -rf node_modules && mkdir node_modules",
"start": "node app.js",
"dev": "node app.dev.js"
}
}