-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
45 lines (45 loc) · 1.34 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
{
"name": "figma-plugin-react-vite",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "run-s dev",
"dev": "run-s watch",
"dev:ui-only": "vite -c ./vite.config.ui.ts",
"watch": "run-p watch:*",
"watch:ui": "npm run build:ui -- --watch --mode=development",
"watch:plugin": "npm run build:plugin -- --watch --mode=development",
"clean": "rimraf dist/*",
"types": "run-s types:*",
"types:src": "tsc",
"types:node": "tsc -P tsconfig.node.json",
"build": "run-s build:*",
"prebuild": "run-s types clean",
"build:ui": "vite build -c ./vite.config.ui.ts",
"build:plugin": "vite build -c ./vite.config.plugin.ts"
},
"dependencies": {
"monorepo-networker": "^1.5.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@figma/plugin-typings": "^1.83.0",
"@types/node": "^18.15.11",
"@types/postcss-url": "^10.0.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^4.2.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"postcss-url": "^10.1.3",
"rimraf": "^5.0.5",
"sass": "^1.60.0",
"typescript": "^5.3.0",
"vite": "^5.0.11",
"vite-plugin-generate-file": "^0.1.1",
"vite-plugin-react-rich-svg": "^1.0.0",
"vite-plugin-singlefile": "^2.0.3"
}
}