-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.77 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.77 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "cdc-figma-plugin-react-starterkit",
"version": "1.0.0",
"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.",
"license": "GPL-3.0",
"main": "dist/code.js",
"scripts": {
"build": "webpack --mode=production",
"build:watch": "webpack --mode=development --watch"
},
"dependencies": {
"autoprefixer": "^10.4.21",
"axios": "^1.12.0",
"framer-motion": "^12.23.0",
"lodash.debounce": "^4.0.8",
"postcss": "^8.5.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.17"
},
"devDependencies": {
"@figma/eslint-plugin-figma-plugins": "*",
"@figma/plugin-typings": "*",
"@types/lodash": "^4.17.20",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"css-loader": "^7.1.2",
"eslint": "^8.54.0",
"html-webpack-plugin": "^5.6.3",
"postcss-loader": "^8.1.1",
"react-dev-utils": "^12.0.1",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.2",
"typescript": "^5.3.2",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@figma/figma-plugins/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"root": true,
"rules": {
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_"
}
]
}
}
}