-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.41 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo build",
"build-example": "turbo build --filter example",
"build-docs": "turbo build --filter docs",
"dev": "turbo dev --concurrency 20",
"test": "turbo test",
"lint": "turbo lint",
"check-types": "turbo check-types",
"clean": "turbo clean --concurrency 20",
"prettier": "prettier --write \"**/*.{js,ts,tsx,md}\"",
"version-packages": "pnpm changeset version && pnpm prettier",
"release": "pnpm build && pnpm changeset publish"
},
"dependencies": {
"clsx": "2.0.0",
"react": "18.2.0",
"react-icons": "4.11.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@changesets/changelog-github": "^0.4.8",
"@types/react": "18.2.15",
"@typescript-eslint/eslint-plugin": "6.7.3",
"@typescript-eslint/parser": "6.7.3",
"autoprefixer": "^10.4.16",
"eslint": "8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-import": "^2.29.0",
"jsdom": "^22.1.0",
"kill-port": "2.0.1",
"postcss": "^8.4.31",
"postcss-import": "^15.1.0",
"prettier-plugin-tailwindcss": "^0.5.5",
"tailwindcss": "^3.3.5",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"repository": {
"type": "git",
"url": "https://github.com/lFandoriNl/chamaeleon"
}
}