-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.47 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
{
"name": "@3-shake/figma-style-finder",
"version": "0.1.0",
"private": true,
"main": "dist/index.html",
"repository": "git@github.com:3-shake/figma-style-finder.git",
"author": "Qs-F <qsf@de-liker.com>",
"license": "MIT",
"engines": {
"node": "18.x"
},
"scripts": {
"dev:ui": "vite build --config vite.ui.config.ts --mode=development",
"dev:code": "vite build --config vite.code.config.ts --mode=development",
"dev": "run-p dev:**",
"clean": "rimraf dist/*",
"prebuild": "run-s clean",
"build:ui": "vite build --config vite.ui.config.ts --mode=production",
"build:code": "vite build --config vite.code.config.ts --mode production",
"build": "run-p build:**",
"lint:eslint": "eslint --ext .ts,.tsx ./src",
"lint:tsc": "tsc",
"lint": "run-p lint:**",
"fmt": "eslint --ext .ts,.tsx --fix ./src",
"test": "run-p lint"
},
"inline": true,
"devDependencies": {
"@de-liker/drts": "0.1.14",
"@figma/plugin-typings": "1.58.0",
"@types/node": "16.18.11",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@types/react-router-dom": "5.3.3",
"@vitejs/plugin-react-refresh": "1.3.6",
"eslint": "8.32.0",
"npm-run-all": "4.1.5",
"rimraf": "4.1.2",
"typescript": "4.6.4",
"vite": "3.1.2",
"vite-plugin-singlefile": "0.11.1"
},
"dependencies": {
"@emotion/react": "11.10.5",
"figma-ui-components": "0.0.8",
"react": "18.2.0",
"react-dom": "18.2.0"
}
}