-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.89 KB
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
{
"name": "figma-plugin-react-template",
"version": "1.0.0",
"description": "Template for Figma plugin with React and Typescript",
"main": "dist/index.js",
"scripts": {
"build:ui": "cross-env TARGET=ui NODE_ENV=\"production\" vite build",
"watch:ui": "cross-env TARGET=ui NODE_ENV=\"development\" vite build --watch",
"build:core": "cross-env TARGET=core NODE_ENV=\"production\" vite build",
"watch:core": "cross-env TARGET=core NODE_ENV=\"development\" vite build --watch",
"build": "concurrently \"yarn:build:*\"",
"watch": "concurrently \"yarn:watch:*\"",
"lint": "eslint --ext .ts,.tsx .",
"lint:fix": "yarn lint --fix"
},
"author": "beomjungil <gil@beomjun.kr>",
"license": "",
"devDependencies": {
"@figma/plugin-typings": "*",
"@rollup/plugin-typescript": "^11.0.0",
"@types/node": "^18.14.1",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.13",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"eslint": "^8.34.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"tailwindcss": "^3.2.7",
"typescript": "*",
"vite": "^4.1.4",
"vite-plugin-singlefile": "^0.13.3"
},
"dependencies": {
"height-app-api": "^1.0.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-figma-plugin-ds": "^2.3.0",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.7.0"
}
}