-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.6 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
{
"name": "isomorphic-demo",
"version": "1.1.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo `hello world!`",
"build": "webpack --progress --colors",
"build:client": "webpack --progress --colors --config webpack.config.js",
"build:server": "webpack --progress --colors --config webpack.config.server.js",
"dev": "webpack-dev-server --open --progress --colors",
"start": "webpack --progress --colors --config webpack.config.js && webpack --progress --colors --config webpack.config.server.js && node --inspect dist/server.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.11.1",
"@types/react-helmet": "^5.0.5",
"@types/react-redux": "^5.0.16",
"@types/react-router-dom": "^4.2.6",
"autoprefixer": "^6.7.7",
"awesome-typescript-loader": "^5.0.0",
"node-sass": "^4.5.0",
"style-loader": "^0.14.1",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"tslint-react": "^3.5.1",
"typescript": "^2.8.1",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14",
"webpack-dev-server": "^3.1.3"
},
"dependencies": {
"@types/react": "^16.3.11",
"@types/react-dom": "^16.0.5",
"axios": "^0.18.0",
"express": "^4.16.3",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-helmet": "^5.2.0",
"react-redux": "^5.0.5",
"react-router-dom": "^4.0.0",
"redux": "^3.7.2",
"redux-observable": "^0.18.0",
"rxjs": "^5.5.10",
"core-services-api-client": "git+https://github.com/buildcom/build-rest-client.git#data-services",
"webpack-node-externals": "^1.7.2"
}
}