forked from jsakas/figma-plugin-color-import-export
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.73 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": "figma-plugin-color-import-export",
"description": "Figma plugin for importing and exporting color tokens",
"author": {
"name": "Jon Sakas",
"email": "[email protected]",
"url": "https://jon.sakas.co"
},
"version": "0.4.0",
"license": "MIT",
"scripts": {
"build": "webpack --mode=production",
"dev": "webpack --mode=development --watch",
"prettier:format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css,json}' ",
"test": "vitest"
},
"dependencies": {
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@mui/icons-material": "^5.11.14",
"@mui/joy": "^5.0.0-alpha.73",
"@mui/material": "^5.11.15",
"@sentry/react": "^7.11.1",
"change-case": "^4.1.2",
"color": "^4.2.3",
"copy-to-clipboard": "^3.3.2",
"handlebars": "^4.7.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rooks": "^6.4.3"
},
"devDependencies": {
"@figma/plugin-typings": "^1.50.0",
"@sentry/webpack-plugin": "^1.19.0",
"@types/color": "^3.0.3",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^3.1.0",
"css-loader": "^6.7.1",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"raw-loader": "^4.0.2",
"react-dev-utils": "^12.0.1",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.7.4",
"url-loader": "^4.1.1",
"vite-tsconfig-paths": "^4.0.8",
"vitest": "^0.29.8",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"resolutions": {
"@mui/material": "npm:@mui/joy@latest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,css,json}": [
"prettier --write",
"git add"
]
}
}