-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.34 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
{
"name": "app-name",
"version": "1.0.0",
"description": "Application name",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.prod.js",
"start": "cross-env webpack-dev-server --hot --host 0.0.0.0 --port 3000 --authnUrl localhost --authnPort 8080 --config webpack.dev.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": ""
},
"author": "VIO Systems and Harry Jacks",
"bugs": {},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.2",
"babel-loader": "^7.1.5",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"cssnano": "^4.0.5",
"enzyme": "^3.4.4",
"enzyme-adapter-react-16": "^1.2.0",
"eslint": "^5.2.0",
"eslint-config-google": "^0.9.1",
"eslint-loader": "^2.1.0",
"eslint-plugin-react": "^7.10.0",
"file-loader": "^1.1.11",
"html-extract-plugin": "0.0.7",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.5.0",
"mini-css-extract-plugin": "^0.4.1",
"node-sass": "^4.9.2",
"optimize-css-assets-webpack-plugin": "^5.0.0",
"postcss-loader": "^2.1.6",
"react-addons-test-utils": "^15.6.2",
"react-test-renderer": "^16.4.2",
"redux-mock-store": "^1.5.3",
"sass-lint": "^1.12.1",
"sass-lint-webpack": "^1.0.0",
"sass-loader": "^7.0.3",
"sinon": "^7.3.2",
"style-loader": "^0.21.0",
"terser-webpack-plugin": "^1.3.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5",
"webpack-merge": "^4.1.3"
},
"dependencies": {
"@babel/polyfill": "^7.4.3",
"@hot-loader/react-dom": "^16.8.6",
"axios": "^0.18.0",
"bootstrap": "^4.3.1",
"debug": "^4.1.1",
"es6-promise": "^4.2.4",
"isomorphic-fetch": "^2.2.1",
"jest-junit": "^6.3.0",
"jquery": "^3.3.1",
"loglevel": "^1.6.1",
"react": "^16.4.1",
"react-bootstrap": "^1.0.0-beta.5",
"react-dom": "^16.8.6",
"react-focus-lock": "^1.19.1",
"react-hot-loader": "^4.3.12",
"react-icons": "^3.5.0",
"react-idle-timer": "^4.2.5",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"redux": "^4.0.0"
},
"jest": {
"setupFiles": [
"./jest.config.js"
]
},
"optionalDependencies": {}
}