forked from UgnisSoftware/react-spreadsheet-import
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.64 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.64 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
120
121
122
123
124
125
126
127
128
129
{
"name": "react-spreadsheet-import",
"version": "1.0.5",
"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": "start-storybook -p 6006",
"test": "jest",
"ts": "tsc",
"prebuild": "rimraf dist",
"build": "rollup -c rollup.config.ts",
"build-storybook": "build-storybook -o docs-build",
"release:minor": "git checkout master && git pull && npm run test && npm run ts && npm run build && npm version patch && git add -A && git push && git push --tags && npm publish",
"release:major": "git checkout master && git pull && npm run test && npm run ts && npm run build && npm version major && git add -A && git push && git push --tags && npm publish",
"clean": "rimraf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UgnisSoftware/react-spreadsheet-import.git"
},
"keywords": [
"React",
"spreadsheet",
"import",
"upload",
"csv",
"xlsx",
"validate",
"automatic",
"match"
],
"author": "Ugnis",
"license": "MIT",
"bugs": {
"url": "https://github.com/UgnisSoftware/react-spreadsheet-import/issues"
},
"homepage": "https://github.com/UgnisSoftware/react-spreadsheet-import#readme",
"dependencies": {
"@chakra-ui/react": "1.8.6",
"@emotion/react": "11.8.2",
"@emotion/styled": "11.8.1",
"chakra-react-select": "3.1.1",
"chakra-ui-steps": "1.6.2",
"framer-motion": "6.2.8",
"js-levenshtein": "1.1.6",
"lodash": "4.17.21",
"react": "17.0.2",
"react-data-grid": "7.0.0-beta.11",
"react-dom": "17.0.2",
"react-dropzone": "12.0.4",
"react-icons": "4.3.1",
"xlsx": "0.18.4"
},
"devDependencies": {
"@babel/core": "7.17.7",
"@emotion/jest": "11.8.0",
"@jest/types": "27.5.1",
"@storybook/react": "6.4.19",
"@testing-library/dom": "8.11.3",
"@testing-library/jest-dom": "5.16.2",
"@testing-library/react": "12.1.4",
"@testing-library/user-event": "13.5.0",
"@types/jest": "27.4.1",
"@types/js-levenshtein": "1.1.1",
"@types/react": "17.0.40",
"@types/react-dom": "17.0.13",
"@types/styled-system": "5.1.15",
"babel-loader": "8.2.3",
"jest": "27.5.1",
"jest-watch-typeahead": "1.0.0",
"prettier": "2.6.0",
"react-select-event": "5.3.0",
"rollup": "2.70.1",
"rollup-plugin-typescript2": "0.31.2",
"ts-essentials": "9.1.2",
"ts-jest": "27.1.3",
"ttypescript": "1.5.13",
"typescript": "4.6.2",
"typescript-transform-paths": "^3.3.1"
},
"prettier": {
"endOfLine": "crlf",
"tabWidth": 2,
"trailingComma": "all",
"semi": false,
"printWidth": 120
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"transform": {
"^.+\\.(ts|tsx)?$": "ts-jest/dist"
},
"moduleNameMapper": {
"~/(.*)": "<rootDir>/src/$1"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"setupFiles": [
"./src/tests/setup.ts"
],
"setupFilesAfterEnv": [
"@testing-library/jest-dom/extend-expect"
],
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
]
}
}