-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.35 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
{
"name": "design-system-starter",
"version": "1.0.0",
"description": "[Educational Purpose] This is a design system starter kit for my blog series Design System 101",
"main": "index.js",
"scripts": {
"build:packages": "turbo run build",
"changeset": "changeset",
"clear": "rimraf 'packages/*/{lib,node_modules}' && rimraf node_modules",
"dev": "turbo run dev -- --watch",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"generate": "plop",
"lint": "eslint packages/**/**/src --ext .ts,.tsx --config .eslintrc.js --cache",
"postinstall": "husky install",
"release": "changeset publish",
"version": "changeset version"
},
"keywords": [
"Design System"
],
"author": "JingHuang Su",
"license": "ISC",
"private": true,
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"@your-design-system/tsconfig": "workspace:*",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"plop": "^4.0.1",
"prettier": "^3.2.2",
"turbo": "^1.11.3"
}
}