forked from react-figma/react-figma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.35 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
{
"name": "react-figma",
"version": "0.20.0",
"description": "Render React components to Figma",
"scripts": {
"tsc": "tsc -p tsconfig.json --noEmit",
"test": "jest",
"prettify": "prettier \"src/**/*.{js,jsx,ts,tsx}\" \"examples/**/*.{js,jsx,ts,tsx}\" --ignore-path ./.prettierignore --write",
"prettier:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx}\" \"examples/**/*.{js,jsx,ts,tsx}\"",
"build": "npm run build:clean && npm run build:lib",
"build:clean": "rimraf dist",
"build:lib": "cross-env BABEL_ENV=production tsc -p tsconfig.json"
},
"jest": {
"preset": "ts-jest/presets/js-with-babel",
"setupFiles": [
"<rootDir>/setup.jest.js"
]
},
"author": "Ilya Lesik <ilialesik@gmail.com>",
"license": "MIT",
"pre-commit": [
"prettify",
"tsc",
"test"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/react-figma/react-figma.git"
},
"keywords": [
"figma",
"react",
"figma-plugins"
],
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
"@figma/plugin-typings": "1.24",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.8",
"@types/react": "^16.9.4",
"@types/react-native": "^0.63.50",
"@types/react-test-renderer": "^16.9.1",
"@types/yoga-layout": "^1.9.1",
"babel-jest": "^24.9.0",
"copyfiles": "^2.1.1",
"cross-env": "^5.2.0",
"css-loader": "^3.2.0",
"figma-api-stub": "0.0.48",
"file-loader": "^6.2.0",
"html-webpack-inline-source-plugin": "^0.0.10",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"jest-fetch-mock": "^3.0.3",
"pre-commit": "^1.2.2",
"prettier": "^1.18.2",
"react": "16.8.6",
"react-figma-webpack-config": "0.0.7",
"react-test-renderer": "16.8.6",
"rimraf": "^3.0.0",
"style-loader": "^1.0.0",
"svg-inline-loader": "^0.8.0",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.4",
"typescript": "^3.5.3",
"url-loader": "^2.1.0",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6"
},
"dependencies": {
"color-parse": "1.3.8",
"figma-jsonrpc": "^0.4.0",
"nanoid": "3.1.31",
"react-devtools-core": "^4.7.0",
"react-fetch-hook": "1.7.2",
"react-reconciler": "^0.23.0",
"rxjs": "^6.5.2",
"utility-types": "^3.10.0",
"yoga-layout-prebuilt": "1.9.3"
},
"peerDependencies": {
"react": "*"
}
}