generated from dittowords/figma-plugin-react-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.91 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
{
"name": "figma-plugin-react-template",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:rlingineni/figma-plugin-react-template.git",
"author": "Ravi Lingineni ([email protected])",
"license": "MIT",
"scripts": {
"build": "webpack --mode=production && npm run build-css",
"watch": "webpack --mode=development --watch",
"preview-plugin": "webpack --mode=development --PREVIEW_ENV=figma --watch",
"preview-browser": "node preview-server.js & webpack-dev-server --mode=development --PREVIEW_ENV=browser",
"preview": "concurrently \"yarn:preview-plugin\" \"yarn:preview-browser\" \"yarn:watch-css\" ",
"compare": "concurrently \"yarn:preview-browser\" \"yarn:watch\" \"yarn:watch-css\"",
"build-css": "npx tailwindcss -i ./src/app/styles/input.css -o ./src/app/styles/ui.css",
"watch-css": "npx tailwindcss -i ./src/app/styles/input.css -o ./src/app/styles/ui.css --watch"
},
"dependencies": {
"@figma/plugin-typings": "^1.58.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"classnames": "^2.3.2",
"postcss": "^8.2.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.3.0",
"zustand": "^4.3.5"
},
"devDependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@types/react-router-dom": "^5.3.3",
"concurrently": "^7.6.0",
"css-loader": "^3.1.0",
"express": "^4.17.1",
"fork-ts-checker-webpack-plugin": "^6.2.4",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^3.2.0",
"react-refresh": "^0.14.0",
"react-refresh-typescript": "^2.0.8",
"style-loader": "^0.23.1",
"tailwindcss": "^3.0.24",
"ts-loader": "^8.0.11",
"typescript": "^4.6.4",
"url-loader": "^4.1.1",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.6",
"webpack-dev-middleware": "^5.3.3",
"webpack-dev-server": "^3.11.2",
"ws": "^7.4.5"
}
}