forked from daangn/stackflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.51 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.51 KB
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
{
"name": "@stackflow/monorepo",
"private": true,
"license": "MIT",
"workspaces": [
"docs",
"core",
"demo",
"integrations/*",
"packages/*",
"extensions/*"
],
"scripts": {
"build": "ultra -r build",
"build:dts": "ultra -r --build build:dts",
"clean": "ultra -r clean",
"dev": "ultra -r dev",
"format": "eslint . --fix --ext .ts,.tsx --ignore-path .gitignore && prettier -w .",
"lerna:publish": "yarn build && lerna publish",
"lerna:publish:all": "yarn build && lerna publish --force-publish",
"lerna:publish:canary": "yarn build && lerna publish --canary",
"test": "yarn build && ultra -r test",
"typecheck": "tsc --noEmit",
"version": "yarn install && git stage yarn.lock"
},
"resolutions": {
"@mdx-js/react": "2.1.1",
"esbuild": "0.14.51"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/node": "^18.6.3",
"@types/react": "^18.0.15",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.13.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"lerna": "^4.0.0",
"prettier": "^2.6.2",
"typescript": "^4.7.4",
"ultra-runner": "^3.10.5"
},
"packageManager": "yarn@3.2.2"
}