-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
77 lines (77 loc) · 3.6 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
{
"name": "lineup-lite",
"description": "",
"version": "1.8.0",
"private": true,
"license": "MPL-2.0",
"author": {
"name": "Samuel Gratzl",
"email": "[email protected]",
"url": "https://wwww.sgratzl.com"
},
"workspaces": [
"packages/*",
"examples/*"
],
"homepage": "https://github.com/sgratzl/lineup-lite",
"bugs": {
"url": "https://github.com/sgratzl/lineup-lite/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/sgratzl/lineup-lite.git"
},
"scripts": {
"lint": "yarn run prettier:check && yarn workspaces foreach -v -p --topological-dev run lint",
"fix": "yarn run prettier:write && yarn workspaces foreach -v --topological-dev run fix",
"clear": "yarn workspaces foreach -v -p --topological-dev run clear && shx rm -rf docs",
"test": "yarn workspaces foreach -v -p --topological-dev run test",
"test:examples": "yarn workspaces foreach -v -p --topological-dev --include \"@lineup-lite/example*\" run test",
"test:packages": "yarn workspaces foreach -v -p --topological-dev --exclude \"(lineup-lite|@lineup-lite/example*)\" run test",
"libs": "yarn workspaces foreach -v -p --topological-dev --include \"@lineup-lite/(table|hooks|components)\" run build",
"pack:libs": "yarn workspaces foreach -v -p --topological-dev --include \"@lineup-lite/(table|hooks|components)\" pack --out '%s-%v.tgz'",
"build:website": "yarn workspaces foreach -v -p --topological-dev --include \"@lineup-lite/(table|hooks|components|docs)\" run build",
"build": "yarn workspaces foreach -v -p --topological-dev run build",
"build:examples": "yarn workspaces foreach -v -p --topological-dev --include \"@lineup-lite/example*\" run build",
"build:packages": "yarn workspaces foreach -v -p --topological-dev --exclude \"(lineup-lite|@lineup-lite/example*)\" run build",
"compile": "yarn workspaces foreach -v -p --topological-dev run compile",
"watch": "yarn workspace @lineup-lite/table compile -w",
"docs": "yarn workspaces foreach -v --topological-dev run docs",
"copy_docs": "shx rm -rf docs && shx cp -r packages/docs/build/ docs/ && shx cp -r packages/hooks/docs/ docs/api/hooks/ && shx cp -r packages/table/docs/ docs/api/table/ && shx cp -r packages/components/docs/ docs/api/components/",
"website": "yarn build:website && yarn docs && yarn copy_docs",
"start": "yarn workspace @lineup-lite/_playground run start",
"prettier": "prettier .eslintrc.js .prettierrc.js *.json \".github/**\"",
"prettier:write": "yarn run prettier --write",
"prettier:check": "yarn run prettier --check",
"release": "release-it --disable-metrics",
"release:npm": "yarn workspaces foreach --verbose --no-private npm publish --access public",
"postinstall": "yarn sdks vscode"
},
"devDependencies": {
"@babel/eslint-parser": "^7.18.2",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"@typescript-eslint/typescript-estree": "^5.27.0",
"@yarnpkg/sdks": "^3.0.0-rc.6",
"eslint": "^8.16.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"prettier": "^2.6.2",
"release-it": "^14",
"shx": "^0.3.4",
"typescript": "^4.7.2"
},
"dependenciesMeta": {
"[email protected]": {
"unplugged": true
}
},
"packageManager": "[email protected]"
}