-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
40 lines (40 loc) · 1.3 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
{
"name": "figma-plugin-react-template",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:dittowords/figma-plugin-react-template.git",
"author": "XavierAgostini <[email protected]>",
"license": "MIT",
"scripts": {
"build": "webpack --mode=production",
"build: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"
},
"dependencies": {
"@figma/plugin-typings": "^1.19.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"postcss": "^8.2.10",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"typescript": "^4.1.3",
"url-loader": "^2.1.0"
},
"devDependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"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.1.0",
"react-refresh-typescript": "^1.1.0",
"style-loader": "^0.23.1",
"ts-loader": "^6.0.4",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.11.2",
"ws": "^7.4.5"
}
}