-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
106 lines (106 loc) · 2.79 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
{
"name": "feather-and-ink",
"productName": "Feather and Ink",
"description": "A visualization tool for your pen&paper character in the world of Aborea.",
"productDescription": "A visualization tool for your pen&paper character in the world of Aborea.",
"version": "0.1.2",
"author": {
"name": "Snekussaurier",
"email": "snekussaurier@gmail.com",
"url": "https://github.com/Snekussaurier"
},
"main": "public/main.js",
"homepage": "./",
"license": "Apache 2.0",
"private": true,
"rebuild-sqlite3": "electron-rebuild -f -w sqlite3",
"build": {
"extends": null,
"appId": "com.snekussaurier.featherandink",
"productName": "Feather and Ink",
"copyright": "Copyright Snekussaurier",
"files": [
"build/**/*",
"./public/main.js"
],
"directories": {
"buildResources": "build"
},
"extraResources": [
{
"from": "./db/",
"to": "db/",
"filter": [ "**/*" ]
}
],
"publish": [
{
"provider": "github",
"owner": "Snekussaurier",
"repo": "feather-and-ink"
}
],
"linux": {
"target": [
"deb",
"snap",
"rpm"
]
}
},
"dependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"concurrently": "^7.3.0",
"electron-is-dev": "^2.0.0",
"nodemon": "^2.0.19",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-indiana-drag-scroll": "^2.2.0",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"react-svg": "^15.1.4",
"sqlite3": "^5.0.11",
"wait-on": "^6.0.1",
"web-vitals": "^2.1.4",
"yarn": "^1.22.19"
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start-react": "react-scripts start",
"build-react": "react-scripts build",
"start-electron": "nodemon --watch ./public/* --exec \"electron .\"",
"dev": "concurrently \"yarn start-react\" \"wait-on http://localhost:3000 && yarn start-electron\" ",
"pack-app": "yarn build-react && electron-builder --dir",
"build-local": "yarn build-react && yarn electron-builder --publish never",
"release": "yarn build-react && yarn electron-builder --publish always",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"autoprefixer": "^10.4.8",
"electron": "^20.0.1",
"electron-builder": "^23.3.3",
"postcss": "^8.4.14",
"tailwindcss": "^3.1.7"
}
}