-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
54 lines (54 loc) · 1.5 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
{
"name": "react-ssr",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "webpack --mode=production && npm run copy_static_assets",
"dev": "webpack && npm run copy_static_assets && concurrently \"webpack --watch\" \"nodemon dist\"",
"test": "npm run webpack && concurrently \"npm run webpack --watch\" \"mocha --watch\"",
"start": "NODE_ENV=production node dist/index.js",
"copy_static_assets": "node copyStaticAssets.js",
"webpack": "webpack --config webpack.test.js"
},
"engines": {
"node": "12.14.0"
},
"repository": {
"type": "git",
"url": "https://github.com/MarvelousWololo/ssr-react"
},
"keywords": [
"react",
"expressjs",
"react-router",
"server-side-rendering"
],
"author": "Marvelous Wololo <[email protected]>",
"license": "MIT",
"dependencies": {
"compression": "1.7.4",
"express": "4.17.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-router-dom": "5.1.2"
},
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/preset-env": "7.9.0",
"@babel/preset-react": "7.9.4",
"babel-loader": "8.1.0",
"babel-preset-react": "6.24.1",
"chai": "4.2.0",
"concurrently": "5.1.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"fs-extra": "9.0.0",
"mocha": "7.1.1",
"nodemon": "2.0.2",
"react-addons-test-utils": "15.6.2",
"webpack": "4.42.1",
"webpack-cli": "3.3.11",
"webpack-node-externals": "1.7.2"
}
}