-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
94 lines (94 loc) · 3.29 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
{
"name": "hyperswitch-dashboard",
"version": "1.0.5",
"main": "index.js",
"author": "Shiva Nandan <[email protected]>",
"license": "MIT",
"scripts": {
"setup-env": "chmod +x ./replace_env.sh && ./replace_env.sh",
"pre-commit": "bash .githooks/commit-msg",
"start": "npm run setup-env && cp env-config.js ./public/hyperswitch && APP_VERSION=$npm_package_version && appName=hyperswitch webpack serve --config webpack.dev.js",
"serve": "npm run setup-env && cp env-config.js ./dist/hyperswitch && node dist/server/server.js",
"prod:start": "webpack serve --config webpack.dev.js",
"build:netlify": "webpack --config webpack.prod.js --env netlifyHosted",
"build:test": "cd tests && npx rescript build -with-deps",
"build:prod": "npm run re:clean && npm run re:build && npm run setup-env && cp env-config.js ./public/hyperswitch && APP_VERSION=$npm_package_version && webpack --config webpack.prod.js",
"re:build": "rescript",
"re:clean": "rescript clean",
"re:start": "rescript build -w",
"re:format": "rescript format -all",
"postinstall": "git config core.hooksPath .githooks && chmod +x .githooks/commit-msg",
"cy:open": "cypress open",
"cy:run": "cypress run"
},
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit"
}
},
"devDependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.1",
"copy-webpack-plugin": "^9.0.0",
"css-loader": "^5.0.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"cypress": "^13.6.0",
"file-loader": "^6.2.0",
"husky": "^8.0.3",
"mini-css-extract-plugin": "^1.3.1",
"monaco-editor-webpack-plugin": "^7.0.1",
"node-fetch": "^2.6.1",
"postcss": "^8.3.6",
"postcss-loader": "^4.1.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^3.1.0",
"react-refresh": "^0.10.0",
"rescript": "^10.1.2",
"serve": "^14.2.1",
"terser-webpack-plugin": "^5.1.3",
"webpack": "^5.3.2",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.3.0"
},
"dependencies": {
"@headlessui/react": "^1.2.0",
"@juspay-tech/hyper-js": "^1.0.0",
"@juspay-tech/react-hyper-js": "^1.0.1",
"@monaco-editor/react": "^4.4.5",
"@rescript/core": "^0.5.0",
"@rescript/react": "^0.11.0",
"@ryyppy/rescript-promise": "^2.1.0",
"bs-fetch": "^0.6.2",
"csvjson-csv2json": "^5.0.6",
"csvjson-json2csv": "^1.0.3",
"dayjs": "^1.10.4",
"final-form": "^4.20.4",
"framer-motion": "^10.12.16",
"highcharts": "^9.3.0",
"highcharts-react-official": "^3.1.0",
"html-to-image": "^1.11.11",
"intro.js": "^5.0.0",
"intro.js-react": "^0.5.0",
"js-datepicker": "^5.18.2",
"js-sha256": "^0.9.0",
"lottie-react": "^2.3.1",
"mixpanel-browser": "^2.45.0",
"monaco-editor": "^0.34.1",
"nprogress": "^0.2.0",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.0",
"react-color": "^2.19.3",
"react-diff-viewer": "^3.1.1",
"react-dom": "^18.2.0",
"react-final-form": "^6.5.9",
"react-ga4": "^2.0.0",
"react-pdf": "^7.3.3",
"react-virtualized-auto-sizer": "^1.0.11",
"react-window": "^1.8.8",
"recoil": "^0.1.2",
"rescript-debounce-react": "^1.0.0",
"rescript-webapi": "^0.7.0",
"tailwindcss": "^3.0.0"
},
"packageManager": "[email protected]"
}