-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.83 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
{
"name": "eggstractor",
"version": "1.0.0",
"description": "Eggstractor",
"main": "code.js",
"scripts": {
"build": "webpack --mode=production",
"dev": "webpack --mode=development --watch",
"lint": "eslint --ext .ts,.tsx --ignore-pattern node_modules .",
"lint:fix": "eslint --ext .ts,.tsx --ignore-pattern node_modules --fix .",
"watch": "npm run build -- --watch",
"test": "jest",
"test:watch": "jest --watch"
},
"author": "Bitovi",
"license": "MIT",
"devDependencies": {
"@figma/eslint-plugin-figma-plugins": "*",
"@figma/plugin-typings": "^1.106.0",
"@types/jest": "^29.0.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"css-loader": "^7.1.2",
"esbuild": "^0.19.0",
"eslint": "^8.54.0",
"highlight.js": "^11.11.1",
"html-inline-css-webpack-plugin": "^1.11.2",
"html-inline-script-webpack-plugin": "^3.2.1",
"html-webpack-plugin": "^5.6.3",
"jest": "^29.0.0",
"mini-css-extract-plugin": "^2.9.2",
"ts-jest": "^29.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.3.2",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@figma/figma-plugins/recommended"
],
"env": {
"node": true,
"es6": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": [
"./tsconfig.json",
"./ui.tsconfig.json"
]
},
"root": true,
"rules": {
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_"
}
]
}
},
"dependencies": {
"highlight.js": "^11.8.0"
}
}