-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
49 lines (49 loc) · 1.6 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
{
"name": "character-sheet-app",
"version": "4.5.3",
"description": "Online character sheet for Tabletop Role-Playing Games",
"repository": {
"type": "git",
"url": "git+https://github.com/derikb/character-sheet-app.git"
},
"bugs": {
"url": "https://github.com/derikb/character-sheet-app/issues"
},
"homepage": "https://github.com/derikb/character-sheet-app#readme",
"keywords": [
"d&d",
"rpg",
"ttrpg",
"character sheet"
],
"author": "Derik A Badman",
"license": "GPL-3.0",
"dependencies": {
"firebase": "^10.1.0",
"rpg-table-randomizer": "^1.3.2"
},
"devDependencies": {
"@stylistic/eslint-plugin-js": "^2.1.0",
"commit-and-tag-version": "^12.0.0",
"esbuild": "^0.21",
"eslint": "^9.4.0",
"globals": "^15.3.0",
"normalize.css": "^8.0.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "esbuild --serve=8080 --servedir=./dist ./src/styles.css ./src/index.js ./src/service_worker.js --outdir=./dist --loader:.svg=dataurl --loader:.html=file --bundle",
"build": "esbuild ./src/styles.css ./src/index.js ./src/service_worker.js --outdir=./dist --loader:.svg=dataurl --loader:.html=file --minify --sourcemap --bundle",
"release": "commit-and-tag-version -a",
"eslint": "eslint ./src"
},
"commit-and-tag-version": {
"scripts": {
"postbump": "npm run build && git add ./dist/service_worker.js ./dist/service_worker.js.map ./dist/index.js ./dist/index.js.map ./dist/styles.css ./dist/styles.css.map"
},
"bumpFiles": [
"package.json",
"package-lock.json"
]
}
}