-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.18 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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "HomeServer WebUI",
"version": "0.0.1",
"main": "src/js/index.js",
"description": "",
"repository": "",
"license": "",
"scripts": {
"test": "",
"dev-server": "nodemon ./server/dev",
"dev": "cross-env PORT=3010 NODE_ENV=development webpack serve --progress --profile --content-base ./src/",
"dist": "cross-env NODE_ENV=production webpack --mode production --config webpack.config.babel.js",
"start": "npm run dist"
},
"dependencies": {
"body-parser": "^1.15.2",
"compression": "^1.6.2",
"connected-react-router": "^6.9.1",
"cookie-parser": "^1.4.3",
"dropzone": "^5.9.2",
"es6-promise": "^4.2.8",
"express": "^4.14.0",
"file-saver": "^2.0.2",
"grommet": "^2.19.1",
"grommet-controls": "^3.0.2",
"grommet-icons": "^4.6.2",
"history": "^4.10.0",
"immutable": "^4.0.0-rc.12",
"isomorphic-fetch": "^3.0.0",
"js-cookie": "^2.2.1",
"morgan": "^1.10.0",
"npm": "^8.1.0",
"path-to-regexp": "^6.2.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-checkbox-tree": "^1.7.2",
"react-dom": "^17.0.2",
"react-fileupload": "^2.4.0",
"react-intl": "^5.15.7",
"react-json-dom": "0.0.3",
"react-json-tree": "^0.15.0",
"react-json-view": "^1.21.3",
"react-redux": "^7.2.4",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-syntax-highlighter": "^15.4.3",
"redux": "^4.1.0",
"redux-thunk": "^2.3.0",
"request": "^2.88.0",
"styled-components": "^5.2.3",
"superagent": "^6.1.0",
"uuid": "^8.3.2",
"ws": "^7.4.4",
"yarn": "^1.22.10"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.0.1",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.2.2",
"babel-plugin-styled-components": "^1.8.0",
"babel-plugin-transform-imports": "^2.0.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.2",
"cross-env": "^3.1.4",
"eslint": "^7.24.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-parallel": "^1.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"graceful-fs": "^4.2.8",
"jest-cli": "^26.6.3",
"json-loader": "^0.5.4",
"node-sass": "^5.0.0",
"nodemon": "^2.0.7",
"npx": "^10.2.2",
"pre-commit": "^1.2.2",
"react-dev-utils": "^4.1.0",
"react-devtools": "^4.12.2",
"sass-loader": "^11.0.1",
"shelljs": "^0.8.4",
"webpack": "^4.46.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"lcov"
],
"collectCoverageFrom": [
"src/**/*.{js}"
],
"modulePathIgnorePatterns": [
"<rootDir>/dist/",
"<rootDir>/templates/"
],
"testPathIgnorePatterns": [
"<rootDir>[/\\\\](dist|templates|node_modules)[/\\\\]"
]
},
"pre-commit": [
"test"
]
}