-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
96 lines (96 loc) · 2.77 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
{
"name": "web-monitoring-ui",
"version": "0.1.0",
"description": "web-monitoring-ui",
"main": "views/main.html",
"dependencies": {
"@googleapis/sheets": "^4.0.1",
"babel-plugin-react-css-modules": "^5.2.6",
"body-parser": "^1.20.1",
"ejs": "^3.1.10",
"express": "^4.21.1",
"normalize.css": "^8.0.1",
"request": "^2.88.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/runtime": "^7.20.13",
"@gfx/zopfli": "^1.0.15",
"autoprefixer": "^10.4.13",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^9.1.2",
"bundlewatch": "^0.4.0",
"compression-webpack-plugin": "^10.0.0",
"css-loader": "^3.6.0",
"dotenv": "^16.0.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.7",
"eslint": "^8.33.0",
"eslint-plugin-react": "^7.32.2",
"extract-loader": "^5.1.0",
"fetch-mock": "^9.11.0",
"file-loader": "^6.2.0",
"husky": "^8.0.3",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"moment": "^2.29.4",
"moment-locales-webpack-plugin": "^1.2.0",
"node-fetch": "^3.3.0",
"postcss": "^8.4.31",
"postcss-loader": "^7.2.4",
"prop-types": "^15.8.1",
"react": "^16.14.0",
"react-aria-modal": "^4.0.2",
"react-dates": "^21.8.0",
"react-dom": "^16.14.0",
"react-router-dom": "^5.3.0",
"react-test-renderer": "^16.14.0",
"react-tooltip": "^4.5.1",
"react-with-direction": "^1.4.0",
"style-loader": "^3.3.1",
"webpack": "^5.94.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^5.0.1",
"webpack-dev-middleware": "^6.1.2"
},
"scripts": {
"analyze": "npm run build-production -- --analyze",
"build": "webpack",
"build-production": "NODE_ENV=production webpack",
"bundlewatch": "bundlewatch --config .bundlewatch.config.js",
"lint": "eslint --ignore-path .gitignore './**/*.{js,jsx}'",
"prepare": "if [ -d .git ]; then husky install; fi",
"start": "node server/app.js",
"test": "jest --colors --verbose",
"test-watch": "jest --watch"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/src/__mocks__/file-mock.js",
"\\.css$": "<rootDir>/src/__mocks__/identity-object.js"
},
"setupFilesAfterEnv": [
"<rootDir>/src/test-setup.js"
],
"testEnvironment": "jsdom",
"watchPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/\\..+/"
]
},
"author": "",
"license": "GPL-3.0",
"engines": {
"node": "18.20.4"
},
"browserslist": [
"last 3 versions",
"not < 1%",
"not ie < 1000",
"not op_mini all",
"not android < 1000",
"not dead"
]
}