-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.29 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.29 KB
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
{
"name": "shift-prelude",
"version": "0.0.11",
"description": "Uncover a story of loss and revenge while exploring procedurally generated dungeons in this hack-and-slash RPG.",
"private": true,
"license": "ISC",
"main": "public/electron.js",
"scripts": {
"build": "react-scripts build",
"dev": "run-p dev:*",
"dev:electron": "wait-on http://localhost:3000 && electronmon .",
"dev:react": "cross-env BROWSER=none yarn start",
"dist:linux": "yarn build && electron-builder -l",
"dist:macos": "yarn build && electron-builder -m",
"dist:windows": "yarn build && electron-builder -w",
"eject": "react-scripts eject",
"lint": "run-p 'lint:*'",
"lint:packageJson": "npmPkgJsonLint --ignorePath .gitignore .",
"lint:src": "eslint --cache --fix --report-unused-disable-directives --ext '.ts,.js,.tsx,.jsx,.json' .",
"postversion": "git add package.json && git commit -m \"chore: bump version\" && git push",
"release": "git checkout main && git pull && npm version --no-git-tag-version patch",
"start": "react-scripts start",
"test": "react-scripts test --passWithNoTests"
},
"dependencies": {
"@pixi/unsafe-eval": "6.2.0",
"@testing-library/jest-dom": "5.11.4",
"@testing-library/react": "11.1.0",
"@testing-library/user-event": "12.1.10",
"electron-is-dev": "2.0.0",
"fontfaceobserver": "2.1.0",
"jimp": "0.16.1",
"pixi.js": "6.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-scripts": "4.0.3",
"recoil": "0.4.1",
"typed-emitter": "1.4.0",
"web-vitals": "1.0.1"
},
"devDependencies": {
"@twindigital/eslint-config": "1.0.4",
"@types/fontfaceobserver": "2.1.0",
"@types/lodash": "4.14.176",
"@types/node-fetch": "3.0.2",
"@types/react": "17.0.33",
"@types/react-dom": "17.0.11",
"@typescript-eslint/eslint-plugin": "5.3.0",
"@typescript-eslint/parser": "5.3.0",
"babel-eslint": "10.1.0",
"cross-env": "7.0.3",
"electron": "15.3.0",
"electron-builder": "22.11.7",
"electron-is-dev": "2.0.0",
"electronmon": "2.0.2",
"eslint": "7.11.0",
"eslint-config-react-app": "6.0.0",
"eslint-import-resolver-node": "0.3.6",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jest": "24.1.5",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.1",
"eslint-plugin-react": "7.26.1",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-testing-library": "5.0.0",
"npm-package-json-lint": "5.4.0",
"npm-run-all": "4.1.5",
"typescript": "4.x",
"wait-on": "6.0.0"
},
"author": "Sean Kleinjung <sean@thrashplay.com>",
"bugs": {
"url": "https://github.com/skleinjung/shift/issues"
},
"build": {
"appId": "com.thrashplay.shift-prelude",
"productName": "Shift: Prelude",
"directories": {
"buildResources": "public"
},
"files": [
"build/**/*",
"node_modules/**/*"
],
"linux": {
"category": "Game"
}
},
"files": [
"lib"
],
"homepage": "./",
"keywords": [
"spawn-point",
"configuration"
],
"browserslist": {
"production": [
"last 1 electron version"
],
"development": [
"last 1 electron version"
]
}
}