-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
53 lines (53 loc) · 1.46 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
{
"name": "figma-heron-handoff-plugin",
"version": "1.0.0",
"author": "Jun",
"repository": "[email protected]:hallee9000/figma-heron-handoff-plugin.git",
"description": "This plugin can help export handoff zip. It works with https://figmacn.com/handoff",
"license": "AGPL-3.0",
"scripts": {
"build": "node node_modules/.bin/webpack --mode=production",
"dev": "node node_modules/.bin/webpack --mode=development --watch",
"prettier:format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css,json}' "
},
"dependencies": {
"classnames": "^2.2.6",
"file-saver": "^2.0.2",
"jszip": "^3.2.2",
"rc-tree": "^3.1.2",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@figma/plugin-typings": "^1.35.0",
"@types/react": "^16.8.24",
"@types/react-dom": "^16.8.5",
"css-loader": "^3.1.0",
"html-webpack-inline-source-plugin": "^0.0.10",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.2",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"lint-staged": "^9.2.1",
"prettier": "^1.18.2",
"style-loader": "^0.23.1",
"ts-loader": "^8.2.0",
"tslint": "^5.18.0",
"tslint-react": "^4.0.0",
"typescript": "^5.2.2",
"url-loader": "^2.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"
]
}
}