This repository was archived by the owner on Apr 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.65 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.65 KB
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
{
"name": "create-react-figma-plugin",
"version": "0.0.1",
"description": "Create React Figma Plugin with no build configuration.",
"main": "code.js",
"homepage": "https://github.com/FradSer/create-react-figma-plugin/",
"bugs": "https://github.com/FradSer/create-react-figma-plugin/issues",
"repository": {
"url": "https://github.com/FradSer/create-react-figma-plugin/",
"type": "git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "modd",
"lint": "eslint './src/**/*.{ts,tsx}' --fix && stylelint '**/*.css' --fix",
"build": "webpack --mode production && zip create-react-figma-plugin.zip ./dist/* manifest.json LICENSE"
},
"author": "Frad LEE",
"license": "MIT",
"dependencies": {
"react-figma-plugin-ds": "^2.0.3"
},
"devDependencies": {
"@types/react": "^16.9.1",
"@types/react-dom": "^16.8.5",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"css-loader": "^3.1.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^3.2.0",
"prettier": "^1.18.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"style-loader": "^0.23.1",
"stylelint": "^13.7.2",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-prettier": "^1.1.2",
"ts-loader": "^6.0.4",
"typescript": "^3.5.3",
"url-loader": "^2.1.0",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.6"
}
}