-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 1.13 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
{
"name": "testbed",
"version": "1.0.0",
"description": "This plugin template uses Typescript. If you are familiar with Javascript, Typescript will look very familiar. In fact, valid Javascript code is already valid Typescript code.",
"main": "src/code.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npx webpack --mode=development --watch",
"build": "npx webpack --mode=production"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@figma/plugin-typings": "^1.22.0",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"css-loader": "^3.4.2",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^3.2.0",
"style-loader": "^1.1.2",
"ts-loader": "^6.2.1",
"typescript": "^3.7.4",
"url-loader": "^3.0.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"@material-ui/core": "^4.11.3",
"color": "^3.1.2",
"rc-slider": "^9.7.2",
"react": "^17.0.2",
"react-color": "^2.19.3",
"react-colorful": "^5.1.4",
"react-dom": "^17.0.2",
"react-hook-form": "^7.3.4"
}
}