-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 929 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 929 Bytes
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
{
"name": "starter-vite-tsc",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"clean": "rm -rf .cache && rm -rf node_modules/.vite",
"build-plugin": "tsc -p plugin-dev/tsconfig.json && yarn clean && yarn upgrade @effect/plugin-vite-react"
},
"dependencies": {
"effect": "2.0.0-next.17",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@effect/language-service": "^0.0.19",
"@effect/vite-plugin-react": "link:plugin-dev",
"@rollup/pluginutils": "^5.0.2",
"@types/babel__core": "^7.20.1",
"@types/node": "^18.16.19",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^3.1.0",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"typescript": "5.1.6",
"vite": "^4.4.4"
}
}