forked from TanStack/table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 4.05 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
{
"private": true,
"repository": "https://github.com/tanstack/table.git",
"scripts": {
"clean": "npm exec --workspaces -c \"rm -rf build || true\"",
"test": "(is-ci && npm run test:ci) || npm run test:dev",
"test:ci": "jest",
"test:dev": "jest --watch",
"build": "rollup --config rollup.config.js && npm run typecheck",
"watch": "concurrently --kill-others \"rollup --config rollup.config.js -w\" \"tsc -b --watch\"",
"linkAll": "lerna exec 'npm link' --parallel",
"unlinkAll": "lerna exec 'npm unlink' --parallel",
"dev": "npm run watch",
"prettier": "prettier \"packages/*/{src/**,examples/**/src/**}.{md,js,jsx,ts,tsx,json}\" --write",
"visualize": "lerna exec 'open build/stats-html.html'",
"cipublish": "ts-node scripts/publish.ts",
"cipublishforce": "CI=true npm run cipublish",
"typecheck": "tsc -b"
},
"namespace": "@tanstack",
"workspaces": [
"./examples/react/basic",
"./examples/react/bootstrap",
"./examples/react/column-dnd",
"./examples/react/column-groups",
"./examples/react/column-ordering",
"./examples/react/column-pinning",
"./examples/react/column-sizing",
"./examples/react/column-visibility",
"./examples/react/editable-data",
"./examples/react/expanding",
"./examples/react/filters",
"./examples/react/full-width-resizable-table",
"./examples/react/full-width-table",
"./examples/react/fully-controlled",
"./examples/react/grouping",
"./examples/react/kitchen-sink",
"./examples/react/mui-pagination",
"./examples/react/pagination",
"./examples/react/pagination-controlled",
"./examples/react/row-dnd",
"./examples/react/row-selection",
"./examples/react/sorting",
"./examples/react/sub-components",
"./examples/react/virtualized-infinite-scrolling",
"./examples/react/virtualized-rows",
"./examples/solid/basic",
"./examples/solid/bootstrap",
"./examples/solid/column-groups",
"./examples/solid/column-ordering",
"./examples/solid/column-visibility",
"./examples/solid/sorting",
"./examples/svelte/basic",
"./examples/svelte/column-groups",
"./examples/svelte/column-ordering",
"./examples/svelte/column-pinning",
"./examples/svelte/column-visibility",
"./examples/svelte/sorting",
"./examples/vue/basic",
"./examples/vue/column-ordering",
"./examples/vue/column-pinning",
"./examples/vue/sorting",
"./packages/match-sorter-utils",
"./packages/react-table",
"./packages/react-table-devtools",
"./packages/solid-table",
"./packages/svelte-table",
"./packages/table-core",
"./packages/vue-table"
],
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@commitlint/parse": "^16.2.1",
"@faker-js/faker": "^7.6.0",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^13.2.1",
"@rollup/plugin-replace": "^4.0.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@tsconfig/svelte": "^3.0.0",
"@types/luxon": "^2.3.1",
"@types/node": "^17.0.25",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/semver": "^7.3.10",
"axios": "^0.26.1",
"babel-plugin-transform-async-to-promises": "^0.8.18",
"concurrently": "^7.1.0",
"current-git-branch": "^1.1.0",
"git-log-parser": "^1.2.0",
"jest": "^27.5.1",
"lerna": "^4.0.0",
"luxon": "^2.3.2",
"prettier": "^2.6.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.70.2",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-size": "^0.2.2",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.6.0",
"solid-js": "^1.6.2",
"stream-to-array": "^2.3.0",
"svelte": "^3.49.0",
"ts-node": "^10.7.0",
"typescript": "^4.7.4",
"vue": "^3.2.33"
}
}