-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
78 lines (78 loc) · 2.01 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
{
"name": "figma-measure",
"version": "3.4.1",
"description": "",
"main": "code.js",
"scripts": {
"build": "webpack --mode=production && zip -r -X Measure.zip ./Measure/ && rm ./Measure/ui.js*",
"dev": "DEBUG=* webpack --watch",
"version": "conventional-changelog -p karma -i CHANGELOG.md -s -r 0 && git add .",
"lint": "eslint 'src/*/**/*.{js,ts,tsx}' --fix"
},
"author": "Philip Stapelfeldt <me@ph1p.dev>",
"license": "ISC",
"devDependencies": {
"@figma/plugin-typings": "^1.91.0",
"@types/node": "^20.12.7",
"@types/react-dom": "^18.2.25",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"create-file-webpack": "^1.0.2",
"css-loader": "^7.1.1",
"esbuild-loader": "^4.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.1",
"html-webpack-plugin": "^5.6.0",
"style-loader": "^4.0.0",
"styled-components": "^6.1.8",
"terser-webpack-plugin": "^5.3.10",
"typescript": "^5.4.5",
"url-loader": "^4.1.1",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"figmaPlugin": {
"documentAccess": "dynamic-page",
"name": "Measure",
"id": "739918456607459153",
"api": "1.0.0",
"main": "code.js",
"ui": "ui.html",
"enablePrivatePluginApi": true,
"editorType": [
"figma",
"dev"
],
"networkAccess": {
"allowedDomains": [
"https://rsms.me",
"https://unavatar.io"
]
},
"capabilities": [
"inspect"
],
"relaunchButtons": [
{
"command": "open",
"name": "Open Measure"
}
]
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"mobx": "^6.12.3",
"mobx-react": "^9.1.1",
"mobx-sync": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-popper": "^2.3.0",
"react-router-dom": "^6.22.3"
},
"prettier": {
"singleQuote": true
}
}