-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.5 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 3.5 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "relying_party_dashboard",
"version": "1.0.0",
"description": "Kimlic Relying Party Dashboard",
"main": "index.js",
"author": "Dmytro Nasyrov @ Pharos Production Inc.",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/Kimlic/rp-dashboard"
},
"bugs": {
"url": "https://github.com/Kimlic/rp-dashboard"
},
"license": "Kimlic",
"homepage": "http://www.pharosproduction.com",
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-react-display-name": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.0.0",
"@fortawesome/fontawesome-svg-core": "^1.2.4",
"@fortawesome/free-solid-svg-icons": "^5.3.1",
"@fortawesome/react-fontawesome": "^0.1.3",
"@nivo/line": "^0.49.1",
"@richeterre/apollo-upload-client": "^8.0.0",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.2",
"case-sensitive-paths-webpack-plugin": "^2.1.2",
"css-loader": "^1.0.0",
"es6-promise": "^4.2.5",
"eslint": "^5.6.0",
"eslint-plugin-babel": "^5.2.0",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^2.0.0",
"graphql-tag": "^2.9.2",
"history": "^4.7.2",
"html-webpack-plugin": "^3.2.0",
"html-webpack-root-plugin": "^0.10.0",
"lite-server": "^2.4.0",
"lorem-ipsum": "^1.0.6",
"nivo": "^0.31.0",
"node-sass": "^4.9.3",
"react-dropzone": "^5.1.0",
"react-router-dom": "^4.3.1",
"redux-devtools": "^3.4.1",
"reselect": "^3.0.1",
"rimraf": "^2.6.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"uglifyjs-webpack-plugin": "^2.0.1",
"uuid": "^3.3.2",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.0",
"webpack-dev-middleware": "^3.3.0",
"webpack-dev-server": "^3.1.8",
"webpack-merge": "^4.1.4"
},
"dependencies": {
"apollo-boost": "^0.1.16",
"apollo-link": "^1.2.3",
"apollo-link-context": "^1.0.9",
"bootstrap": "^4.1.3",
"classnames": "^2.2.6",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"graphql": "^14.0.2",
"jquery": "^3.3.1",
"react": "^16.5.2",
"react-apollo": "^2.1.11",
"react-css-transition": "^0.7.4",
"react-dom": "^16.5.2",
"react-popper": "^1.0.2",
"react-redux": "^5.0.7",
"react-transition-group": "^2.4.0",
"react-virtualized": "^9.20.1",
"reactstrap": "^6.4.0",
"redux": "^4.0.0",
"redux-promise": "^0.6.0",
"redux-recycle": "^1.4.0"
},
"scripts": {
"clean": "rimraf dist",
"start": "webpack-dev-server --config ./webpack/webpack.config.dev.js --hot --inline --progress --profile --colors --watch",
"test": "echo \"All tests passed!\" && exit 0",
"build:webpack:demo-kimlic-com": "PUBLIC_URL=https://dashboard.kimlic.com API_URI=https://demo.kimlic.com/dashboard NODE_ENV=production webpack --config ./webpack/webpack.config.prod.js -p --profile --colors --bail",
"build:demo-kimlic-com": "npm run clean && npm run build:webpack:demo-kimlic-com",
"build:webpack:demo-rp2-kimlic-com": "PUBLIC_URL=https://dashboard2.kimlic.com API_URI=https://demo-rp2.kimlic.com/dashboard NODE_ENV=production webpack --config ./webpack/webpack.config.prod.js -p --profile --colors --bail",
"build:demo-rp2-kimlic-com": "npm run clean && npm run build:webpack:demo-rp2-kimlic-com",
"dev": "npm run build:webpack:demo-kimlic-com && npx lite-server --baseDir='dist' --port=3100"
}
}