forked from react-figma/react-figma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "react-figma-styled-components",
"version": "1.0.0",
"description": "Example styled-components app for react-figma",
"main": "./src/code.tsx",
"scripts": {
"webpack:watch": "webpack --watch",
"clean": "rm -rf dist/",
"build:js": "webpack",
"build": "npm run clean && npm run build:js"
},
"private": true,
"keywords": [
"react",
"react-figma",
"styled-components",
"figma",
"react-primitives"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/react-figma/react-figma.git"
},
"author": "Macintosh Helper <[email protected]>",
"license": "ISC",
"dependencies": {
"chroma-js": "^2.1.0",
"react": "^16.9.0",
"react-figma": "0.1.13",
"react-primitives": "^0.8.1",
"styled-components": "^5.0.1",
"yoga-layout-prebuilt": "^1.9.3"
},
"devDependencies": {
"html-webpack-inline-source-plugin": "^0.0.10",
"html-webpack-plugin": "^3.2.0",
"react-figma-webpack-config": "0.0.7",
"ts-loader": "^6.0.4",
"typescript": "^3.5.3",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7"
}
}