-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.86 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
52
53
54
55
56
57
58
59
60
61
{
"name": "figma-plugin-react-starter",
"version": "1.1.0",
"description": "",
"main": "code.js",
"scripts": {
"start": "webpack --mode=development --watch",
"serve": "webpack serve",
"bundle": "webpack --mode=production && node zip.js",
"lint": "eslint ./src"
},
"author": "Caleb Nance",
"license": "MIT",
"dependencies": {
"prop-types": "^15.8.1",
"react": "^18.1.0",
"react-dev-utils": "^11.0.4",
"react-dom": "^18.1.0"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-react-constant-elements": "^7.14.5",
"@babel/plugin-transform-react-inline-elements": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@babel/runtime": "^7.15.4",
"@figma/plugin-typings": "^1.31.0",
"@types/node": "^16.7.1",
"adm-zip": "^0.5.9",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"chalk": "^4.1.2",
"css-loader": "^6.2.0",
"eslint": "^7.8.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^5.3.2",
"prettier": "^2.1.1",
"sass": "^1.49.9",
"sass-loader": "^12.6.0",
"style-loader": "^3.2.1",
"url-loader": "^4.1.1",
"webpack": "^5.70.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.3.1"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none"
}
}