-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
91 lines (91 loc) · 3.8 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
{
"name": "infinite-table",
"version": "0.1.0",
"private": true,
"description": "The most productive Data Table for React",
"main": "index.js",
"overrides": {
"next": "14.0.3"
},
"scripts": {
"clean-deps": "rm package-lock.json && rm -fr node_modules && rm -fr source/node_modules && rm -fr www/node_modules && rm -fr examples/node_modules",
"dev": "npm-run-all --parallel www-serve:data examples-dev",
"test": "npm-run-all --parallel www-serve:data examples-test",
"test:ci": "npm run examples-test",
"test:watch": "npm-run-all --parallel www-serve:data examples-dev-no-output examples-test:watch",
"build:watch": "npm run --prefix source watch",
"build": "npm run --prefix source build",
"format": "npm-run-all --parallel source-format www-format",
"lint": "npm-run-all --parallel www-lint",
"build:all": "npm-run-all build www-build",
"tsc": "npm-run-all source-tsc examples-tsc www-tsc",
"tscw": "npm-run-all --parallel source-tscw examples-tscw www-tscw",
"www": "npm-run-all --parallel www-serve:data www-dev",
"ci:ts-check": "npm-run-all build --parallel examples-tsc www-tsc",
"ci:test:build": "npm run source-jest && npm run examples-test:build",
"ci:test:run": "npm run examples-test:ci",
"source-jest": "npm run --prefix source jest",
"///": "///",
"//": "// the above scripts are the most important ones",
"////": "////",
"source-tsc": "npm run --prefix source tsc",
"source-tscw": "npm run --prefix source tscw",
"source-format": "npm run --prefix source format",
"examples-tsc": "npm run --prefix examples tsc",
"examples-tscw": "npm run --prefix examples tscw",
"examples-dev": "npm run --prefix examples dev",
"examples-dev-no-output": "npm run --prefix examples dev-no-output",
"examples-test": "npm run --prefix examples test",
"examples-test:build": "npm run --prefix examples build",
"examples-test:ci": "npm run --prefix examples ci:test",
"examples-test:watch": "npm run --prefix examples test:watch",
"www-dev": "npm run --prefix www dev",
"www-build-dev": "npm run --prefix www build-dev",
"www-build": "npm run --prefix www build && echo SUCCESS",
"www-tsc": "npm run --prefix www tsc",
"www-tscw": "npm run --prefix www tscw",
"www-format": "npm run --prefix www format",
"www-lint": "npm run --prefix www lint",
"www-serve:data": "npm run --prefix www serve:data",
"www-dataserver:install": "npm --prefix www/dataserver install",
"test:debug": "npm run --prefix examples test:debug",
"xxxbuild-website": "npm i && npm --force --prefix source install && npm run --prefix source build && npm --force --prefix www install && npm run --prefix www build",
"release:canary-nobump": "npm run --prefix source release:canary-nobump",
"release:nobump": "npm run --prefix source release:nobump",
"doctoc": "doctoc README.md && doctoc source/LICENSE.md",
"serve:functions": "npx netlify functions:serve"
},
"repository": {
"type": "git",
"url": "git https://github.com/infinite-table/react-table.git"
},
"author": "InfiniteTable <[email protected]> ",
"bugs": {
"url": "https://github.com/infinite-table/react-table/issues"
},
"homepage": "https://github.com/infinite-table/react-table#readme",
"devDependencies": {
"@tsconfig/recommended": "^1.0.2",
"@types/estree": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"doctoc": "^2.0.0",
"eslint": "^8.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"prettier-eslint": "^13.0.0",
"next": "14.0.3"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"trailingComma": "all"
},
"workspaces": [
"source",
"www",
"examples"
]
}