-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) ยท 2.54 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "plasticine-island",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"plasticine-island": "bin/plasticine-island.js"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"preview": "serve docs/dist",
"test:unit": "vitest",
"test:e2e": "playwright test",
"lint": "eslint --fix --ext .ts,.tsx,.js,.jsx ./",
"commit": "cz",
"prepare": "husky install",
"prepare:e2e": "tsx scripts/prepare-e2e.ts"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"pnpm lint"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@mdx-js/rollup": "^2.2.1",
"@vitejs/plugin-react": "^3.0.0",
"acorn": "^8.8.1",
"cac": "^6.7.14",
"fast-glob": "^3.2.12",
"github-slugger": "^2.0.0",
"hast-util-from-html": "^1.0.0",
"mdast-util-mdxjs-esm": "^1.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.5.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.1.0",
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-mdx-frontmatter": "^2.1.1",
"shiki": "^0.12.1",
"unconfig": "^0.3.7",
"unist-util-visit": "^4.1.1",
"vite": "^4.0.1"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@loadable/component": "^5.15.2",
"@playwright/test": "^1.29.0",
"@types/hast": "^2.3.4",
"@types/mdast": "^3.0.10",
"@types/node": "^18.11.16",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"@vitest/ui": "^0.25.8",
"commitizen": "^4.2.6",
"commitlint": "^17.3.0",
"cz-git": "^1.4.1",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"execa": "^6.1.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"rehype-stringify": "^9.0.3",
"remark-mdx": "^2.2.1",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"remark-stringify": "^10.0.2",
"rollup": "^3.7.5",
"serve": "^14.1.2",
"tsup": "^6.5.0",
"tsx": "^3.12.1",
"typescript": "^4.9.4",
"unified": "^10.1.2",
"vitest": "^0.25.8"
}
}