-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.87 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "janus",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"serve": "webpack-dev-server",
"prod-build": "production=true webpack",
"format": "prettier --ignore-unknown --no-error-on-unmatched-pattern --write webpack.config.js ui/*",
"lint": "eslint ui/**/*.js ui/**/*.jsx"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"babel-loader": "^8.2.3",
"babel-plugin-direct-import": "^1.0.0",
"babel-plugin-minify-dead-code-elimination": "^0.5.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^9.1.0",
"css-loader": "^6.5.1",
"eslint": "^8.2.0",
"eslint-plugin-react": "^7.27.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"style-loader": "^3.3.1",
"webpack": "^5.64.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0"
},
"dependencies": {
"@babel/polyfill": "^7.10.4",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"deepmerge": "^4.2.2",
"npm-check-updates": "^12.0.2",
"oidc-client": "^1.11.5",
"react-identicons": "^1.2.5",
"react-modal": "^3.14.4",
"react-redux": "^7.2.6",
"react-router-dom": "^6.0.2",
"redux": "^4.1.2",
"redux-actions": "^2.6.5",
"redux-oidc": "^4.0.0-beta1",
"redux-thunk": "^2.4.0"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": true,
"singleQuote": true,
"jsxBracketSameLine": false,
"useTabs": true
}
}