forked from Figma-Linux/figma-linux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·100 lines (100 loc) · 3.36 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
94
95
96
97
98
99
100
{
"name": "figma-linux",
"version": "0.8.1",
"description": "Figma is the first interface design tool based in the browser, making it easier for teams to create software. Join as in Telegram: https://t.me/figma_linux",
"main": "src/main/index.js",
"repository": "git@github.com:ChugunovRoman/figma-linux.git",
"homepage": "https://github.com/ChugunovRoman/figma-linux",
"author": "ChugunovRoman <Zebs-BMK@yandex.ru>",
"license": "MIT",
"scripts": {
"dev": "electron-webpack dev",
"start": "electron dist/main/main.js",
"build": "rm -rf ./dist; electron-webpack app; rm -rf dist/main/dest dist/renderer/dest dist/**/*.map dist/**/*.bak dist/renderer/index.html dist/.renderer-index-template.html dist/package-lock.json",
"builder": "electron-builder --config=config/builder.json -l",
"pack": "rm -rf build/installers && npm run build && chmod a+x ./resources/AppRun && npm run builder",
"check": "npm run lint && npm run prettier",
"lint": "eslint src/**/*.{ts,tsx}",
"prettier": "prettier src/**/*.{ts,tsx} --write",
"precommit": "lint-staged",
"package": "rm -rf build/installers && npm run build && electron-builder --config=config/builder.json -l"
},
"lint-staged": {
"*.{ts, tsx, js, jsx}": [
"node_modules/.bin/eslint src/**/*.{ts,tsx}",
"prettier --write",
"git add"
]
},
"electronWebpack": {
"main": {
"webpackConfig": "config/webpack.config.main.js"
},
"renderer": {
"webpackConfig": "config/webpack.config.renderer.js"
}
},
"dependencies": {
"adm-zip": "^0.5.1",
"chokidar": "^3.0.2",
"css-vars": "^2.2.0",
"electron-build-env": "^0.2",
"electron-devtools-installer": "^2.2.4",
"electron-settings": "^4.0.2",
"figma-linux-rust-binding": "=0.1.4",
"lodash": "^4.17.20",
"mobx": "^5.6.0",
"mobx-react": "^5.4.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"source-map-support": "^0.5.6",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/adm-zip": "^0.4.33",
"@types/electron-devtools-installer": "^2.0.3",
"@types/lodash": "^4.14.166",
"@types/node": "^12.12.13",
"@types/react": "^16.14.2",
"@types/react-dom": "^16.0.10",
"@types/react-redux": "^5.0.15",
"@types/react-router-dom": "^4.3.1",
"@types/redux": "^3.6.0",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"awesome-typescript-loader": "^3.4.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.1.0",
"css-loader": "^4.3.0",
"electron": "12.0.2",
"electron-builder": "^22.10.4",
"electron-rebuild": "^2.3.4",
"electron-webpack": "^2.8.2",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.17.0",
"husky": "^3.1.0",
"lint-staged": "^10.5.3",
"native-ext-loader": "^2.3.0",
"node-loader": "^1.0.2",
"node-sass": "^4.14.1",
"prettier": "^1.19.1",
"sass-loader": "^10.0.2",
"style-loader": "^1.2.1",
"ts-loader": "^8.0.3",
"typescript": "^3.7.5",
"webpack": "^4.44.1",
"webpack-cli": "3.3.12"
},
"keywords": [
"Figma",
"linux",
"Electron",
"desktop",
"app"
]
}