-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.8 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "figma-plugin-boilerplate",
"version": "0.1.0",
"description": "An opinionated Figma plugin boilerplate built with React, TypeScript, ESLint, Prettier, Babel, Webpack, and Jest",
"main": "index.js",
"license": "MIT",
"private": true,
"scripts": {
"start": "npm-run-all --parallel dev lint type-check:watch",
"dev": "yarn rimraf dist && yarn webpack --mode=development",
"build": "yarn rimraf dist && yarn webpack --mode=production && yarn rimraf dist/ui.js",
"type-check": "tsc",
"type-check:watch": "tsc --watch --preserveWatchOutput",
"lint": "eslint --ext .jsx --ext .js --ext .ts --ext .tsx src"
},
"engines": {
"node": "^12.14.1",
"npm": "^6.13.4",
"yarn": "^1.21.1"
},
"dependencies": {
"debug": "^4.1.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"styled-components": "^5.0.0"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@figma/plugin-typings": "^1.15.0",
"@types/debug": "^4.1.5",
"@types/node": "^14.0.27",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@typescript-eslint/eslint-plugin": "^3.8.0 ",
"@typescript-eslint/parser": "^3.8.0",
"babel-loader": "^8.0.6",
"browserslist": "^4.8.3",
"chalk": "^4.1.0",
"chokidar": "^3.3.1",
"css-loader": "^4.2.1",
"dotenv": "^8.2.0",
"dotenv-cli": "^3.1.0",
"dotenv-expand": "^5.1.0",
"eslint": "^7.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.8.0",
"eslint-import-resolver-webpack": "^0.12.1",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^4.0.8",
"html-webpack-inline-source-plugin": "^0.0.10",
"html-webpack-plugin": "^4.3.0",
"npm-run-all": "^4.1.5",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.5",
"react-dev-utils": "^10.2.1",
"react-is": "^16.12.0",
"rimraf": "^3.0.0",
"style-loader": "^1.1.2",
"typescript": "^3.7.4",
"url-loader": "^4.1.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"browserslist": {
"production": [
"chrome >= 49",
"edge >= 14",
"firefox >= 51",
"safari >= 10.1"
],
"development": [
"last 1 chrome version",
"last 1 edge version",
"last 1 firefox version",
"last 1 safari version"
]
}
}