-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
95 lines (95 loc) · 3.1 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
{
"name": "django-bananas",
"version": "4.1.2",
"license": "MIT",
"author": "Jonas Lundberg",
"repository": {
"type": "git",
"url": "git+https://github.com/5monkeys/django-bananas.js.git"
},
"description": "React admin frontend for Django.",
"main": "index.js",
"private": true,
"keywords": ["admin", "bananas", "django", "django-admin", "react"],
"scripts": {
"start": "webpack-dev-server --config app/webpack.config.js",
"watch": "jest --watchAll --verbose",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"jest": "jest --verbose",
"coverage": "jest --coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"buildwatch": "babel src --watch --out-dir dist",
"build": "babel --delete-dir-on-start src --out-dir dist && cp LICENSE README.md dist/ && sed \"/\\\"private\\\":\\s*true/d\" package.json > dist/package.json",
"test": "npm run eslint && npm run coverage && npm run build"
},
"dependencies": {
"@date-io/date-fns": "^2.17.0",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@mui/x-date-pickers": "^5.0.20",
"classnames": "^2.5.1",
"date-fns": "^2.23.0",
"history": "^4.10.1",
"js-logger": "^1.6.1",
"lodash": "^4.17.21",
"prop-types": "^15.8.1",
"swagger-client": "3.8.1"
},
"peerDependencies": {
"@mui/icons-material": "^5.15.10",
"@mui/material": "^5.15.10",
"@mui/styles": "^5.15.10",
"final-form": "^4.20.10",
"final-form-arrays": "^3.1.0",
"react": "^18.2.0",
"react-final-form": "^6.5.9",
"react-final-form-arrays": "^3.1.4"
},
"devDependencies": {
"@babel/cli": "7.23.9",
"@babel/core": "7.23.9",
"@babel/eslint-parser": "^7.15.0",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-syntax-jsx": "7.23.3",
"@babel/preset-env": "7.23.9",
"@babel/preset-react": "7.23.3",
"@date-io/core": "1.3.8",
"@mui/icons-material": "^5.15.10",
"@mui/material": "^5.15.10",
"@mui/styles": "^5.15.10",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "14.2.1",
"@testing-library/user-event": "^14.5.2",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "29.7.0",
"babel-loader": "9.1.3",
"babel-plugin-transform-dynamic-import": "2.1.0",
"eslint": "8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "12.0.0",
"fetch-mock": "9.11.0",
"file-loader": "6.2.0",
"final-form": "4.20.10",
"final-form-arrays": "3.1.0",
"gh-pages": "2.0.1",
"gravatar": "1.8.2",
"html-webpack-plugin": "5.3.2",
"jest": "29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "3.2.5",
"react": "^18.2.0",
"react-dom": "18.2.0",
"react-final-form": "^6.5.9",
"react-final-form-arrays": "^3.1.4",
"webpack": "5.90.3",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.0.2"
}
}