forked from openimis/openimis-fe-ledger_js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.11 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
67
68
69
70
71
72
73
74
75
76
{
"name": "@openimis/fe-ledger",
"version": "0.1.0",
"license": "AGPL-3.0-only",
"description": "openIMIS Frontend Ledger & Double-Entry Accounting module",
"repository": "openimis/openimis-fe-ledger_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",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ci": "vitest run --coverage --reporter=default",
"prepare": "npm run build"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/runtime": "^7.9.6",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^7.2.0",
"@mui/material": "^7.2.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.6.1",
"@vitejs/plugin-react": "^5.0.0",
"@vitest/coverage-v8": "^4.0.18",
"jsdom": "^29.1.1",
"lodash": "^4.17.21",
"prettier": "^2.3.2",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intl": "^7.1.11",
"react-redux": "^9.1.0",
"redux": "^5.0.1",
"redux-api-middleware": "^3.2.1",
"redux-mock-store": "^1.5.4",
"redux-thunk": "^3.1.0",
"vite": "^7.1.2",
"vitest": "^4.0.18"
},
"files": [
"dist"
],
"dependencies": {
"@emotion/cache": "^11.11.0"
},
"peerDependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^7.2.0",
"@mui/material": "^7.2.0",
"@openimis/fe-core": "*",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intl": "^7.1.11",
"react-redux": "^9.1.0",
"react-router-dom": "^5.2.0",
"redux": "^5.0.1",
"redux-api-middleware": "^3.2.1"
}
}