-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.15 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
{
"scripts": {
"build": "webpack",
"lint": "eslint ./src/**/** --fix",
"start": "node ./dist/server"
},
"devDependencies": {
"babel-core": "^6.10.4",
"babel-eslint": "^10.0.1",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.11.1",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"webpack": "^3.8.1",
"webpack-node-externals": "^1.2.0"
},
"dependencies": {
"express": "^4.14.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router-dom": "^4.3.1",
"styled-components": "^2.2.4"
},
"name": "react-server-side-rendering",
"version": "1.0.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mattdoe/react-server-side-rendering.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mattdoe/react-server-side-rendering/issues"
},
"homepage": "https://github.com/mattdoe/react-server-side-rendering#readme",
"description": ""
}