forked from UgnisSoftware/react-spreadsheet-import
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.9 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 3.9 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "react-spreadsheet-import",
"version": "5.0.0",
"description": "React spreadsheet import for xlsx and csv files with column matching and validation",
"main": "./dist-commonjs/index.js",
"module": "./dist/index.js",
"types": "./types/index.d.ts",
"files": [
"dist-commonjs",
"dist",
"types"
],
"scripts": {
"start": "storybook dev -p 6006",
"test:unit": "jest",
"test:e2e": "npx playwright test",
"test:chromatic": "npx chromatic",
"ts": "tsc",
"format": "prettier --ignore-path .gitignore --write .",
"lint": "eslint --ignore-path .gitignore \"src/**/*.{ts,tsx}\"",
"lint:fix": "eslint --ignore-path .gitignore \"src/**/*.{ts,tsx}\" --fix",
"prebuild": "npm run clean",
"postinstall": "npm run theme",
"build": "rslib build",
"build-storybook": "storybook build -o docs-build",
"test": "vitest run",
"release:patch": "git checkout master && git pull && npm run test:unit && npm run ts && npm run build && npm version patch && git add -A && git push && git push --tags && npm publish",
"release:minor": "git checkout master && git pull && npm run test:unit && npm run ts && npm run build && npm version minor && git add -A && git push && git push --tags && npm publish",
"release:major": "git checkout master && git pull && npm run test:unit && npm run ts && npm run build && npm version major && git add -A && git push && git push --tags && npm publish",
"clean": "rimraf dist dist-commonjs types",
"theme": "npx @chakra-ui/cli typegen ./src/theme/theme.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UgnisSoftware/react-spreadsheet-import.git"
},
"keywords": [
"React",
"spreadsheet",
"import",
"upload",
"csv",
"xlsx",
"validate",
"automatic",
"match"
],
"author": {
"name": "Ugnis"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/UgnisSoftware/react-spreadsheet-import/issues"
},
"homepage": "https://github.com/UgnisSoftware/react-spreadsheet-import#readme",
"peerDependencies": {
"@chakra-ui/react": ">=3.21.0",
"@emotion/react": ">=11.14.0",
"next-themes": ">=0.4.0",
"react": ">=16.9.0",
"react-dom": ">=16.9.0",
"react-icons": ">=5.0.0"
},
"dependencies": {
"js-levenshtein": "^1.1.6",
"lodash.merge": "^4.6.2",
"lodash.uniqby": "^4.7.0",
"react-data-grid": "7.0.0-beta.57",
"uuid": "^11.1.0",
"xlsx-ugnis": "^0.20.3"
},
"devDependencies": {
"@playwright/test": "^1.54.2",
"@rsbuild/core": "1.4.2",
"@rsbuild/plugin-react": "^1.3.5",
"@rslib/core": "^0.12.1",
"@storybook/addon-docs": "^9.1.2",
"@storybook/addon-links": "^9.1.2",
"@storybook/addon-themes": "^9.1.2",
"@testing-library/jest-dom": "^6.7.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/js-levenshtein": "^1.1.3",
"@types/lodash.merge": "^4.6.9",
"@types/lodash.uniqby": "^4.7.9",
"@types/node": "^24.3.0",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"chromatic": "^13.1.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdom": "^26.1.0",
"lint-staged": "^16.1.5",
"prettier": "^2.8.8",
"react": "^19.1.1",
"storybook": "^9.1.2",
"storybook-addon-rslib": "^2.0.4",
"storybook-react-rsbuild": "^2.0.4",
"ts-essentials": "^10.1.1",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"lint-staged": {
"*.{ts,tsx}": "eslint",
"*.{js,ts,tsx,md,html,css,json}": "prettier --write"
},
"prettier": {
"tabWidth": 2,
"trailingComma": "all",
"semi": false,
"printWidth": 120
},
"readme": "ERROR: No README data found!"
}