-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
62 lines (62 loc) · 1.97 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
{
"name": "@maximeheckel/design-system",
"version": "2.2.0",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"sideEffects": false,
"repository": "https://github.com/MaximeHeckel/design-system",
"license": "MIT",
"scripts": {
"build": "node ./esbuild.build.js",
"clean": "rimraf dist",
"dev": "pnpm run clean && node ./esbuild.dev.js & pnpm run ts-types --watch",
"format": "prettier --write \"./**/*.{ts,tsx}\"",
"lint": "eslint --ext=ts,tsx .",
"postbuild": "pnpm run ts-types",
"postversion": "git push origin v$npm_package_version",
"prebuild": "pnpm run clean",
"prepack": "pnpm run build && pnpm run postbuild",
"test": "jest",
"ts-types": "tsc --emitDeclarationOnly --outDir dist",
"type-check": "tsc --noEmit"
},
"devDependencies": {
"@testing-library/dom": "^8.16.1",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.2",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/react": "^18.0.16",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"esbuild": "^0.14.25",
"esbuild-jest": "^0.5.0",
"esbuild-plugin-glob": "^1.1.1",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"prettier": "^2.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.9.4"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"@radix-ui/react-collapsible": "^1.0.1",
"@radix-ui/react-tooltip": "1.0.0",
"@stitches/react": "^1.2.8"
},
"packageManager": "pnpm@9.12.3"
}