-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
133 lines (133 loc) · 4.5 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
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
130
131
132
133
{
"name": "@decathlon/react-table",
"version": "2.1.1",
"description": "React components for efficiently rendering large tabular data",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Decathlon/react-table"
},
"bugs": {
"url": "https://github.com/Decathlon/react-table/issues"
},
"homepage": "https://github.com/Decathlon/react-table/blob/master/README.md",
"files": [
"dist"
],
"dependencies": {
"classnames": "^2.3.1",
"immutability-helper": "^3.1.1",
"lodash": "^4.17.21",
"memoize-one": "^5.2.1",
"react-number-format": "^4.7.3",
"react-resize-detector": "^6.7.7"
},
"peerDependencies": {
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.0.3",
"@mui/material": "^5.0.3",
"@mui/styles": "^5.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.0.3",
"@mui/material": "^5.0.3",
"@mui/styles": "^5.0.1",
"@storybook/addon-a11y": "~6.3.10",
"@storybook/addon-actions": "~6.3.10",
"@storybook/addon-jest": "~6.3.10",
"@storybook/addon-knobs": "~6.3.1",
"@storybook/addon-storysource": "~6.3.10",
"@storybook/addon-viewport": "~6.3.10",
"@storybook/addons": "~6.3.10",
"@storybook/react": "~6.3.10",
"@testing-library/react": "^12.1.2",
"@types/classnames": "^2.3.1",
"@types/enzyme": "^3.10.9",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.175",
"@types/node": "^16.10.3",
"@types/react": "^17.0.27",
"@types/react-dom": "^17.0.9",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.3",
"babel-loader": "^8.2.2",
"css-loader": "^6.3.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-formatter-json": "^0.1.0",
"eslint-formatter-pretty": "^4.1.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.5.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "~3.1.0",
"isomorphic-fetch": "^3.0.0",
"jest": "^27.2.5",
"markdown-loader": "^6.0.0",
"node-sass": "^6.0.1",
"path": "~0.12.7",
"prettier": "^2.4.1",
"prettier-check": "~2.0.0",
"react": "^17.0.2",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.2",
"sass-lint": "~1.13.1",
"sass-loader": "^12.1.0",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.6",
"typescript": "^4.4.3"
},
"scripts": {
"build": "rimraf dist && tsc && npm run build:scss",
"build:scss": "node-sass src/style/index.scss -o dist/style && cp -r src/style/fonts dist/style",
"prepublish": "npm run build",
"test": "npm run test:unit",
"test:unit": "jest",
"test:watch": "npm run test:unit -- --watch",
"test:generate-output": "jest --json --outputFile=jest-test-results.json",
"precoverage": "npm run pretest && rimraf coverage/",
"coverage": "npm run test:unit -- --coverage",
"pretest": "rimraf tests.entry.js.map test/results.xml",
"lint": "npm run lint:eslint && npm run lint:css && npm run lint:prettier",
"lint:eslint": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./",
"lint:css": "sass-lint --verbose",
"lint:prettier": "prettier-check \"src/**/*.{css,html,js,json,less,md,mdx,scss,ts,tsx}\"",
"format": "npm run format:prettier && npm run format:eslint",
"format:eslint": "eslint --cache --ext .js,.jsx,.ts,.tsx --fix ./",
"format:prettier": "prettier --write \"./**/*.{css,html,js,json,less,md,mdx,scss,ts,tsx}\"",
"storybook:start": "start-storybook -p 9001 -c .storybook",
"storybook": "npm run test:generate-output && npm run storybook:start"
},
"keywords": [
"reactjs",
"table",
"virtualized",
"customization",
"performance"
],
"author": "Decathlon",
"license": "Apache-2.0",
"husky": {
"hooks": {
"pre-commit": "npm test && npm run lint"
}
}
}