forked from BuilderIO/figma-html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.57 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
{
"name": "@builder.io/html-to-figma",
"version": "0.0.2-2",
"description": "Convert HTML to figma",
"main": "dist/main.js",
"browser": "dist/browser.js",
"types": "dist/lib/html-to-figma.d.ts",
"files": [
"dist"
],
"scripts": {
"dev:lib": "tsc -w",
"dev": "NODE_ENV=development webpack --mode=development --watch",
"build": "NODE_ENV=production tsc && webpack --mode=production",
"release:patch": "npm version patch && npm run build && npm publish",
"release:dev": "npm version prerelease && npm run build && npm publish --tag dev"
},
"repository": {
"type": "git",
"url": "https://github.com/builderio/html-to-figma"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@builder.io/sdk": "^1.0.40",
"@material-ui/core": "^4.3.3",
"@material-ui/icons": "^4.2.1",
"@types/escape-html": "0.0.20",
"@types/file-type": "^10.9.1",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.5",
"@types/spark-md5": "^3.0.1",
"css-loader": "^3.1.0",
"escape-html": "^1.0.3",
"file-type": "^12.2.0",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^3.2.0",
"mobx": "^5.13.0",
"mobx-react": "^6.1.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"spark-md5": "^3.0.0",
"style-loader": "^0.23.1",
"ts-loader": "^6.0.4",
"typescript": "^3.8.3",
"typescript-declaration-webpack-plugin": "^0.1.1",
"url-loader": "^2.1.0",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.6"
},
"dependencies": {
"@emotion/core": "^10.0.28"
}
}