-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.39 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
{
"name": "figma-plugin",
"version": "1.0.1",
"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": "code.js",
"scripts": {
"build": "webpack --mode=production",
"dev": "webpack --mode=development --watch",
"lint": "eslint ./src",
"fix": "npm run prettier -- --write",
"prettier": "prettier \"**/*.{ts,css,js,md,tsx,html}\"",
"test": "npm run prettier -- --list-different"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"flag-icons": "^7.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@figma/eslint-plugin-figma-plugins": "*",
"@figma/plugin-typings": "*",
"@types/node": "^20.12.7",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/webpack-env": "^1.18.4",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"css-loader": "^6.8.1",
"eslint": "^8.57.0",
"html-webpack-inline-source-plugin": "^1.0.0-beta.2",
"html-webpack-plugin": "^5.6.0",
"prettier": "^3.1.1",
"style-loader": "^3.3.3",
"svgo-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"url-loader": "^4.1.1",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}