-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.18 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
{
"name": "figma-code-gen",
"version": "1.0.0",
"main": "index.js",
"author": "Ilya Lesik <[email protected]>",
"license": "MIT",
"scripts": {
"webpack:watch": "webpack --watch",
"run:localy": "node index.js",
"build": "webpack --config webpack.config.editor.js"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@babel/core": "^7.8.7",
"@babel/generator": "^7.8.7",
"@babel/parser": "^7.8.7",
"@babel/types": "^7.8.7",
"figma-ui-components": "^0.0.8",
"monaco-editor": "^0.20.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-monaco-editor": "^0.34.0",
"styled-components": "^5.0.1"
},
"devDependencies": {
"css-loader": "^3.4.2",
"html-webpack-inline-source-plugin": "^0.0.10",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.2.3",
"monaco-editor-webpack-plugin": "^1.9.0",
"prettier": "1.19.1",
"pretty-quick": "^2.0.1",
"react-figma-webpack-config": "^0.0.4",
"style-loader": "^1.1.3",
"ts-loader": "^6.2.1",
"typescript": "^3.8.3",
"url-loader": "^3.0.0",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
}
}