-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
38 lines (38 loc) · 972 Bytes
/
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
{
"name": "figma-remove-bg",
"version": "1.0.0",
"description": "Remove the background of images automatically",
"main": "code.js",
"scripts": {
"dev": "webpack --mode=development --watch",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "https://github.com/aaroniker/figma-remove-bg.git"
},
"author": "Aaron Iker",
"license": "MIT",
"devDependencies": {
"@figma/plugin-typings": "^1.39.0",
"@types/node": "^16.11.8",
"@types/react": "^17.0.35",
"@types/react-dom": "^17.0.11",
"css-loader": "^6.5.1",
"html-webpack-plugin": "^5.5.0",
"node-sass": "^6.0.1",
"sass": "^1.43.4",
"sass-loader": "^12.3.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.2",
"url-loader": "^4.1.1",
"webpack": "^5.64.1",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"react": "^17.0.2",
"react-dev-utils": "^11.0.4",
"react-dom": "^17.0.2"
}
}