-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.67 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": "notification-ui",
"version": "1.0.7",
"description": "K8s sample application UI",
"main": "index.jsx",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"run:dev": "webpack-dev-server -d --config ./webpack-dev.config.js --history-api-fallback --hot --inline --progress --colors --content-base .",
"build:dev": "webpack -d --config ./webpack-dev.config.js --display-modules --progress",
"build:prd": "webpack --config ./webpack-prd.config.js --display-modules --progress && cp ./nginx.conf ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mkretz/notification-ui.git"
},
"keywords": [
"react"
],
"author": "Mathis Kretz",
"license": "MIT",
"bugs": {
"url": "https://github.com/mkretz/notification-ui/issues"
},
"homepage": "https://github.com/mkretz/notification-ui#readme",
"dependencies": {
"material-ui": "^0.17.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.3",
"react-router": "^3.2.6",
"react-router-redux": "^4.0.8",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^9.1.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"css-loader": "^0.27.1",
"file-loader": "^0.10.1",
"html-webpack-plugin": "^5.5.0",
"json-loader": "^0.5.4",
"node-sass": "^4.13.1",
"react-hot-loader": "^1.3.1",
"style-loader": "^0.13.2",
"webpack": "^5.76.0",
"webpack-dev-server": "^3.11.3",
"yaml-loader": "^0.4.0"
}
}