-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
93 lines (93 loc) · 2.71 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "react-figma-plugin-ds",
"description": "React ui framework based on Figma design system",
"main": "dist/index.js",
"version": "2.3.0",
"author": {
"name": "Alexandr Tovmach",
"url": "https://alexandrtovmach.com/",
"email": "[email protected]"
},
"private": false,
"scripts": {
"watch": "tsc --watch",
"develop": "webpack-dev-server --mode development",
"prepublishOnly": "shx rm -rf ./dist && tsc && npm run build-styles",
"postpublish": "shx rm -rf ./styles ./figma-plugin-ds.css",
"build": "shx rm -rf ./dist && tsc && webpack",
"build-styles": "shx rm -rf ./styles && shx mkdir styles && shx cp -r node_modules/figma-plugin-ds/src/styles/ ./ && shx cp -r node_modules/figma-plugin-ds/dist/*.css ./",
"deploy": "lint-staged && npm run build && gh-pages -d examples/dist",
"prettify": "prettier --write './src/**/*.{js,jsx,ts,tsx,json,css,md}'"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"@types/lodash": "^4.14.149",
"@types/react": "^16.4.18",
"@types/react-copy-to-clipboard": "^4.3.0",
"@types/react-dom": "^16.0.9",
"@types/react-outside-click-handler": "^1.3.0",
"babel-loader": "^8.0.6",
"css-loader": "^4.3.0",
"file-loader": "^6.1.0",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^4.5.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"lodash": "^4.17.15",
"node-sass": "^4.9.4",
"prettier": "^2.1.2",
"prism-react-renderer": "^1.0.2",
"react": "^16.6.0",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^16.6.0",
"react-element-to-jsx-string": "^14.1.0",
"react-scripts": "^3.1.2",
"sass-loader": "^10.0.2",
"shx": "^0.3.3",
"style-loader": "^1.0.0",
"typescript": "^4.0.3",
"url-loader": "^4.1.0",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"lint-staged": {
"./src/**/*.{js,jsx,ts,tsx,json,css,md}": [
"prettier --write",
"git add"
]
},
"keywords": [
"figma",
"figma-plugin",
"plugin",
"framework",
"ui",
"ux",
"react"
],
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"bugs": {
"url": "https://github.com/alexandrtovmach/react-figma-plugin-ds/issues"
},
"homepage": "https://alexandrtovmach.github.io/react-figma-plugin-ds",
"repository": {
"url": "https://github.com/alexandrtovmach/react-figma-plugin-ds"
},
"dependencies": {
"figma-plugin-ds": "^0.1.8",
"react-outside-click-handler": "^1.3.0"
}
}