-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
85 lines (85 loc) · 2.2 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
{
"name": "react-grid-select",
"version": "0.0.8",
"main": "./build/index.js",
"module": "./build/index.es.js",
"author": "Hacksore",
"repository": {
"type": "git",
"url": "https://github.com/Hacksore/react-grid-select.git"
},
"contributors": [
"Alex Oser <aoser9552@gmail.com> (https://github.com/alex-oser)"
],
"scripts": {
"dev": "rollup -c --watch",
"build": "rollup -c",
"test": "jest --watchAll=false",
"start": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public",
"lint": "eslint 'src/**/*.tsx'"
},
"types": "build/index.d.ts",
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"import/no-anonymous-default-export": 0
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"transform": {
"^.+\\.(ts|tsx|js|jsx)$": "ts-jest"
},
"moduleNameMapper": {
"\\.(css|less|scss|sass)$": "identity-obj-proxy"
}
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/addons": "^6.2.9",
"@storybook/react": "^6.2.9",
"@storybook/theming": "^6.2.9",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.1.10",
"babel-loader": "^8.2.2",
"clsx": "^1.1.1",
"eslint": "^7.23.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-docgen-typescript": "^1.22.0",
"react-dom": "^17.0.2",
"rollup": "^2.44.0",
"rollup-plugin-import-css": "^2.0.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"peerDependencies": {
"react-dom": ">=16.8.0",
"react": ">=16.8.0"
}
}