-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
66 lines (66 loc) · 1.98 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
{
"name": "figma-variable-fonts",
"version": "1.1.0",
"description": "This plugin allows you to add/edit variable fonts on the Figma canvas.",
"license": "ISC",
"scripts": {
"build": "webpack --mode=production",
"build:watch": "webpack --mode=development --watch",
"prettier:format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css,json}' "
},
"keywords": [
"variable-fonts",
"figma",
"figma-plugins"
],
"dependencies": {
"dotenv-webpack": "^7.0.3",
"opentype.js": "^1.3.3",
"rc-slider": "^9.7.1",
"react": "^17.0.1",
"react-color": "^2.19.3",
"react-contenteditable": "^3.3.5",
"react-dom": "^17.0.1",
"react-figma-plugin-ds": "^2.0.5",
"react-outside-click-handler": "^1.3.0",
"react-router-config": "^5.1.1",
"react-router-dom": "^5.2.0",
"striptags": "^3.1.1",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@figma/plugin-typings": "^1.19.0",
"@reduxjs/toolkit": "^1.5.0",
"@types/node": "^14.14.35",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.1.16",
"css-loader": "^5.0.1",
"file-loader": "^6.2.0",
"html-webpack-inline-source-plugin": "^0.0.10",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"prettier": "^2.2.0",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.11",
"typescript": "^4.1.2",
"url-loader": "^4.1.1",
"webassembly-loader": "^1.1.0",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,css,json}": [
"prettier --write",
"git add"
]
}
}