-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.69 KB
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
{
"name": "@openimis/fe-admin",
"version": "1.3.0",
"license": "AGPL-3.0-only",
"description": "openIMIS Frontend Admin reference module",
"repository": "openimis/openimis-fe-admin_js",
"main": "dist/index.js",
"module": "dist/index.es.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"build": "vite build",
"start": "vite",
"format": "prettier src -w",
"prepare": "npm run build"
},
"peerDependencies": {
"react-intl": "^7.1.11",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/material": "^7.2.0",
"@mui/icons-material": "^7.2.0",
"redux": "^5.0.1",
"react-router-dom": "^5.3.4",
"moment": "^2.30.1",
"@mui/styled-engine": "^7.2.0"
},
"devDependencies": {
"@babel/cli": "^7.28.0",
"@babel/core": "^7.28.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@babel/preset-react": "^7.27.1",
"@babel/runtime": "^7.27.6",
"@vitejs/plugin-react": "^5.0.0",
"babel-eslint": "^10.1.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.37.5",
"prettier": "^2.8.8",
"prop-types": "^15.8.1",
"redux-api-middleware": "^3.2.1",
"vite": "^7.1.2"
},
"dependencies": {
"@emotion/cache": "^11.14.0",
"zxcvbn": "^4.4.2",
"fastify": "^5.7.1"
},
"files": [
"dist"
],
"eslintConfig": {
"extends": [
"react-app"
]
}
}