forked from mozilla-releng/balrog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.2 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
{
"name": "balrog-ui",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"engines": {
"node": ">=16.0.0 <17.0.0"
},
"scripts": {
"build": "dotenv webpack -- --mode production",
"start": "dotenv webpack-dev-server -- --mode development",
"test": "jest",
"lint": "eslint --cache --format codeframe --ext mjs,jsx,js src test"
},
"comment": "IMPORTANT! date-fns is pinned to 1.3.x due to https://github.com/mui-org/material-ui-pickers/issues/1440",
"comment2": "IMPORTANT! react-virtualized is held at 9.21.1 due to https://github.com/bvaughn/react-virtualized/issues/1226 breaking scrolling to anchors on ListRules",
"comment3": "see also https://github.com/bvaughn/react-virtualized/issues/1179#issuecomment-572854217",
"dependencies": {
"@date-io/date-fns": "^1.3.13",
"@hot-loader/react-dom": "^16.4.0",
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "4.0.0-alpha.57",
"@material-ui/pickers": "^3.3.10",
"@material-ui/styles": "^4.11.2",
"@mozilla-frontend-infra/components": "^3.0.7",
"axios": "^0.24.0",
"change-case": "^4.1.2",
"classnames": "^2.2.6",
"clipboard-copy": "^4.0.1",
"codemirror": "^5.64.0",
"date-fns": "2.26.0",
"deep-sort-object": "^1.0.2",
"diff": "^5.0.0",
"downshift": "^6.0.15",
"is-absolute-url": "^3.0.3",
"mdi-react": "^8.2.0",
"prop-types": "^15",
"qs": "^6.10.1",
"ramda": "^0.27.1",
"react": "^16.13.1",
"react-auth0-components": "^1.0.4",
"react-codemirror2": "^7.2.1",
"react-diff-view": "^2.4.7",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-hot-loader": "^4.13.0",
"react-number-format": "^4.8.0",
"react-router-dom": "^5.2.0",
"react-virtualized": "9.21.1",
"unidiff": "^1.0.2"
},
"devDependencies": {
"@mozilla-frontend-infra/react-lint": "^2.0.1",
"@neutrinojs/jest": "^9.5.0",
"@neutrinojs/react": "^9.5.0",
"dotenv": "^8.2.0",
"dotenv-cli": "^4.1.0",
"eslint": "^7.18.0",
"jest": "^26.6.3",
"neutrino": "^9.5.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2",
"worker-loader": "^3.0.7"
}
}