-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.96 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
{
"name": "cyoanide",
"version": "1.0.0",
"private": true,
"description": "cyoanide",
"author": "Odin Kammerloher",
"keywords": [
"gatsby",
"electron",
"typescript",
"cyoa",
"game"
],
"repository": {
"type": "git",
"url": "https://github.com/Odin94/Cyaonide"
},
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build --prefix-paths",
"run:electron": "electron .",
"electron-buildrun": "npm-run-all build:electron-main --serial run:electron",
"build:electron": "npm-run-all --parallel build build:electron-main --serial build:electron-bundle",
"build:electron-main": "tsc --project tsconfig.electron.json",
"build:electron-bundle": "electron-builder --config electron-builder.config.js --windows --publish=never",
"serve": "gatsby serve",
"clean": "gatsby clean",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@mdx-js/react": "^2.1.3",
"bootstrap": "^5.2.1",
"electron-is-dev": "^2.0.0",
"gatsby": "^4.23.0",
"gatsby-plugin-image": "^2.23.0",
"gatsby-plugin-manifest": "^4.23.0",
"gatsby-plugin-mdx": "^4.2.0",
"gatsby-plugin-prettier-build": "^0.4.4",
"gatsby-plugin-sass": "^5.23.0",
"gatsby-plugin-sharp": "^4.23.0",
"gatsby-remark-images": "^6.23.0",
"gatsby-source-filesystem": "^4.23.0",
"gatsby-transformer-remark": "^5.23.0",
"gatsby-transformer-sharp": "^4.23.0",
"globby": "^11.0.1",
"is-text-path": "^2.0.0",
"p-map": "^4.0.0",
"react": "^18.1.0",
"react-bootstrap": "^2.5.0",
"react-dom": "^18.1.0",
"sass": "^1.54.9",
"use-sound": "^4.0.1"
},
"devDependencies": {
"@types/howler": "^2.2.7",
"@types/node": "^17.0.45",
"@types/react": "^18.0.19",
"@types/react-dom": "^18.0.6",
"electron": "^21.1.0",
"electron-builder": "^23.6.0",
"npm-run-all": "^4.1.5",
"typescript": "^4.8.3"
},
"main": "electron-build/main/electron.js"
}