-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
106 lines (106 loc) · 3.31 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
97
98
99
100
101
102
103
104
105
106
{
"name": "micro-ui",
"version": "1.0.1",
"author": "Jagankumar <[email protected]>",
"license": "MIT",
"private": true,
"engines": {
"node": ">=14"
},
"workspaces": [
"micro-ui-internals/packages/libraries",
"micro-ui-internals/packages/react-components",
"micro-ui-internals/packages/modules/core",
"micro-ui-internals/packages/modules/workbench",
"micro-ui-internals/packages/modules/sandbox",
"micro-ui-internals/packages/modules/pgr",
"micro-ui-internals/packages/modules/dss",
"micro-ui-internals/packages/modules/hrms"
],
"homepage": "/sandbox-ui",
"dependencies": {
"@egovernments/digit-ui-libraries": "1.8.10",
"@egovernments/digit-ui-module-workbench": "1.0.19",
"@egovernments/digit-ui-module-pgr": "1.8.12",
"@egovernments/digit-ui-module-dss": "1.8.12",
"@egovernments/digit-ui-module-core": "1.8.33",
"@egovernments/digit-ui-module-common": "1.8.10",
"@egovernments/digit-ui-module-hrms": "1.8.11",
"@egovernments/digit-ui-module-utilities": "1.0.15",
"@egovernments/digit-ui-module-open-payment":"0.0.2",
"@egovernments/digit-ui-module-engagement": "1.5.20",
"@egovernments/digit-ui-components":"0.2.0",
"@egovernments/digit-ui-module-sandbox": "0.0.1",
"@egovernments/digit-ui-react-components": "1.8.19",
"babel-loader": "8.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"clean-webpack-plugin": "4.0.0",
"react-router-dom": "5.3.0",
"webpack-cli": "4.10.0",
"web-vitals": "1.1.2",
"react-hook-form": "6.15.8",
"react-i18next": "11.16.2",
"react-query": "3.6.1"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "7.21.0",
"babel-loader": "8.1.0",
"clean-webpack-plugin": "4.0.0",
"css-loader": "5.2.6",
"file-loader": "6.2.0",
"http-proxy-middleware": "1.3.1",
"husky": "7.0.4",
"lint-staged": "12.3.7",
"lodash": "4.17.21",
"microbundle-crl": "0.13.11",
"npm-run-all": "4.1.5",
"prettier": "2.1.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "6.15.8",
"react-i18next": "11.16.2",
"react-query": "3.6.1",
"react-router-dom": "5.3.0",
"style-loader": "2.0.0",
"webpack-cli": "4.10.0"
},
"resolutions": {
"**/babel-loader": "8.2.2",
"**/@babel/core": "7.14.0",
"**/@babel/traverse": "7.25.9",
"**/@babel/preset-env": "7.14.0",
"**/styled-components": "5.0.0",
"**/@babel/plugin-transform-modules-commonjs": "7.14.0",
"**/@jridgewell/gen-mapping": "0.3.5",
"**/polished": "4.2.2",
"**/ajv-formats": "2.1.1",
"fast-uri": "2.1.0"
},
"scripts": {
"start": "react-scripts start",
"build": "GENERATE_SOURCEMAP=false SKIP_PREFLIGHT_CHECK=true react-scripts build",
"build:prepare": "./build.sh",
"build:libraries": "cd micro-ui-internals && yarn build",
"build:prod": "webpack --mode production",
"build:webpack": "yarn build:libraries && cd .. && ls && cd ./web && ls && yarn build:prod",
"clean": "rm -rf node_modules"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}