-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.64 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.64 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
52
53
54
55
56
57
58
59
60
{
"name": "elast-ui-monorepo",
"version": "1.0.11",
"private": true,
"workspaces": [
"packages/*"
],
"keywords": [
"react",
"elast",
"component",
"headless",
"ui",
"compound"
],
"author": {
"name": "Eunhyeok Lee",
"email": "dmsgur7112@gmail.com",
"url": "https://itmakesmesoft.vercel.app/"
},
"contributors": [
"Sooyeon Lee",
"Yoonmi Kim"
],
"scripts": {
"dev": "concurrently \"pnpm dev:core\" \"pnpm --filter playground start\"",
"dev:core": "pnpm --filter elast-ui watch",
"build": "pnpm build:core && pnpm build:playground",
"build:core": "pnpm --filter elast-ui build",
"build:playground": "pnpm --filter playground build",
"test": "pnpm -r test",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md}\"",
"clean": "pnpm -r clean",
"clean:build": "rm -rf packages/*/dist",
"prepare": "pnpm build:core"
},
"devDependencies": {
"@types/react-dom": "18.2.19",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"concurrently": "^9.1.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^4.3.4",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.8.7",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=16.0.0",
"pnpm": ">=8.0.0"
}
}