-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
43 lines (43 loc) · 1.24 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
{
"name": "redux-oidc-example",
"version": "1.0.0",
"description": "A small example app to demonstrate the features of redux-oidc",
"main": "dist/redux-oidc-example.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist && webpack",
"dev": "cross-env NODE_ENV=development webpack-dev-server",
"prod": "cross-env NODE_ENV=production npm run ./server.js",
"start": "node server"
},
"author": "Maximilian Mantz",
"license": "MIT",
"dependencies": {
"es6-promise": "^3.2.1",
"express": "^4.13.4",
"oidc-client": "^1.4.1",
"prop-types": "^15.5.8",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-redux": "^4.4.2",
"react-router": "^2.0.1",
"react-router-redux": "^4.0.2",
"redux": "^3.4.0",
"redux-oidc": "^3.1.0",
"redux-saga": "^0.10.4",
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.1.1",
"html-webpack-plugin": "^2.30.1",
"npm-run-all": "^4.1.2",
"rimraf": "^2.6.1",
"webpack": "^3.8.1",
"webpack-dev-server": "2.9.3"
}
}