-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "data-import-wizard-utils",
"version": "1.0.0",
"description": "Data Import Wizard Utils",
"main": "./lib/index.js",
"types": "lib/index.d.ts",
"type": "commonjs",
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"test": "vitest"
},
"keywords": [],
"author": "carapai",
"license": "ISC",
"dependencies": {
"@emotion/styled": "^11.10.6",
"axios": "0.27.2",
"chakra-react-select": "3.3.7",
"date-fns": "^2.29.3",
"dayjs": "^1.11.9",
"jiff": "^0.7.3",
"lodash": "^4.17.21",
"p-limit": "^5.0.0",
"zod": "^3.21.4"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": {
"url": "git@github.com:carapai/diw-utils.git"
},
"devDependencies": {
"@types/jiff": "^0.7.2",
"@types/lodash": "^4.14.192",
"node-polyfill-webpack-plugin": "^2.0.1",
"typescript": "^5.0.3",
"vitest": "^0.31.0"
}
}