-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 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
50
51
52
53
54
55
{
"name": "hadleyville-online",
"version": "2.2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/derikb/hadleyville-online.git"
},
"keywords": [
"rpg",
"role-playing games",
"randomizer",
"osr",
"fkr"
],
"author": "Derik A Badman",
"scripts": {
"lint": "eslint ",
"start": "esbuild --serve=8080 --servedir=./dist ./src/style.css ./src/index.js --outdir=./dist --loader:.svg=dataurl --loader:.html=file --bundle",
"build": "esbuild ./src/style.css ./src/index.js --outdir=./dist --loader:.svg=dataurl --loader:.html=file --minify --sourcemap --bundle",
"release": "standard-version -a"
},
"bugs": {
"url": "https://github.com/derikb/hadleyville-online/issues"
},
"homepage": "https://github.com/derikb/hadleyville-online#readme",
"dependencies": {
"@reduxjs/toolkit": "^1.7.2",
"@types/uuid": "^8.3.4",
"a11y-dialog": "^7.3.0",
"kagekiri": "^1.4.1",
"markdown-it": "^12.3.2",
"redux-localstorage-simple": "^2.4.0",
"rpg-table-randomizer": "^1.3.0",
"sortablejs": "^1.14.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"esbuild": "^0.14.21",
"eslint": "^8.9.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"standard-version": "^9.2.0"
},
"standard-version": {
"scripts": {
"postbump": "npm run build && git add ./dist/index.js ./dist/index.js.map ./dist/style.css ./dist/style.css.map"
},
"bumpFiles": [
"package.json",
"package-lock.json"
]
}
}