-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.3 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "textfolio-electron",
"version": "1.0.0",
"main": "build/main.js",
"license": "MIT",
"scripts": {
"build:main": "webpack --config ./webpack.main.js --mode=production",
"build:renderer": "webpack --config ./webpack.renderer.js --mode=production",
"start:browser": "webpack serve --config ./webpack.renderer.js --mode=development --open",
"start:electron": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"make:linux": "electron-builder --linux",
"make:macos": "electron-builder --mac",
"make:win": "electron-builder --win --x64",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"build": {
"productName": "Textfolio",
"appId": "com.mini.Textfolio",
"files": [
"build/**/*",
"assets/**/*",
"utils/**/*"
],
"mac": {
"category": "public.app-category.developer-tools",
"icon": "",
"hardenedRuntime": true,
"gatekeeperAssess": false
},
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 430,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"icon": "",
"target": [
"nsis"
]
},
"linux": {
"target": [
"deb",
"rpm",
"AppImage"
],
"category": "Development"
}
},
"dependencies": {
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.8.1",
"@heroicons/react": "^1.0.5",
"@reduxjs/toolkit": "^1.7.2",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"dayjs": "^1.10.7",
"dotenv-webpack": "^7.1.0",
"firebase": "^9.6.7",
"polished": "^4.1.4",
"react": "^17.0.2",
"react-contenteditable": "^3.3.6",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"react-router-dom": "^6.2.1",
"ts-loader": "^9.2.6",
"webpack": "^5.69.0",
"webpack-cli": "^4.9.2"
},
"devDependencies": {
"@babel/core": "^7.17.4",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@emotion/babel-plugin": "^11.7.2",
"@emotion/babel-preset-css-prop": "^11.2.0",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-interactions": "^6.4.19",
"@storybook/addon-knobs": "^6.4.0",
"@storybook/addon-links": "^6.4.19",
"@storybook/react": "^6.4.19",
"@storybook/testing-library": "^0.0.9",
"babel-loader": "^8.2.3",
"electron": "^17.0.1",
"electron-builder": "^22.14.13",
"electron-reload": "^2.0.0-alpha.1",
"eslint": "^8.9.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "^8.4.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"fork-ts-checker-webpack-plugin": "^7.2.1",
"html-webpack-plugin": "^5.5.0",
"prettier": "^2.5.1",
"typescript": "^4.5.5",
"webpack-dev-server": "^4.7.4"
},
"peerDependencies": {}
}