-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
57 lines (57 loc) · 1.38 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
{
"name": "swc-playground",
"version": "0.0.0",
"description": "swc playground",
"private": true,
"scripts": {
"start": "next start",
"build": "next build",
"dev": "next dev",
"lint": "tsc -p . && eslint --ext=ts,tsx src",
"fmt": "dprint fmt"
},
"author": "Pig Fang <[email protected]>",
"license": "MIT",
"dependencies": {
"@chakra-ui/react": "^2.8.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@monaco-editor/react": "^4.6.0",
"eslint-config-next": "^13.5.5",
"framer-motion": "^10.16.4",
"jotai": "^2.4.3",
"js-base64": "^3.7.5",
"jsonc-parser": "^3.2.0",
"monaco-editor": "^0.44.0",
"next": "^13.5.5",
"pako": "^2.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.11.0",
"semver": "^7.5.4",
"strip-ansi": "^7.1.0",
"swr": "^2.2.4",
"ts-results": "^3.3.0"
},
"devDependencies": {
"@gplane/tsconfig": "^6.1.0",
"@swc/wasm-typescript-esm": "^1.7.1",
"@types/node": "^20.8.6",
"@types/pako": "^2.0.1",
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"@types/semver": "^7.5.3",
"dprint": "^0.45.0",
"eslint": "^8.51.0",
"tsx": "^4.10.4",
"typescript": "^5.2.2",
"undici": "^5.26.3"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@babel/core"
]
}
}
}