-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.87 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
{
"name": "rewrite-ts-visualized",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"test": "vitest",
"watch": "tsc -b --watch --noEmit",
"rts-watch-with-deno": "deno --watch --unstable-sloppy-imports --allow-all ./rtsc/watch.ts",
"compile-all": "deno run --watch --unstable-sloppy-imports --allow-all ./rtsc/compile-all.ts --watch",
"rts-watch": "vite-node --watch ./rtsc/watch.ts",
"coverage": "vitest run --coverage",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview"
},
"overrides": {
"vite-plugin-node-polyfills": {
"vite": "^6.0.0"
}
},
"dependencies": {
"@babel/code-frame": "^7.26.2",
"@codemirror/lang-javascript": "^6.2.2",
"@types/babel__code-frame": "^7.0.6",
"@types/diff": "^6.0.0",
"@types/json-stable-stringify": "^1.1.0",
"@types/node": "^22.10.3",
"@uiw/codemirror-theme-abcdef": "^4.23.7",
"@uiw/react-codemirror": "^4.23.7",
"commander": "^13.0.0",
"diff": "^7.0.0",
"ignore": "^7.0.0",
"index-to-position": "^1.0.0",
"js-base64": "^3.7.7",
"json-stable-stringify": "^1.2.1",
"json-stringify-pretty-compact": "^4.0.0",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.1.1",
"source-map": "^0.7.4",
"typescript": "^5.5.3",
"zipper": "github:azizghuloum/zipper#a813c38c09c1f2b8b29989971d0991771561f86f"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"typescript-eslint": "^8.19.0",
"vite": "^6.0.6",
"vitest": "^2.1.5"
}
}