-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.67 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
{
"name": "humanity",
"version": "3.0.0",
"description": "A card game for terrible people",
"type": "module",
"exports": {
"./package.json": "./package.json",
".": "./server/index.js"
},
"browserslist": [
"last 1 version",
"> 1%",
"not dead",
"not op_mini all"
],
"scripts": {
"prepare": "bun run build",
"_build": "bun build client/index.js --outdir client/build --define 'process.env.AUTOPREFIXER_GRID=\"undefined\"'",
"build": "NODE_ENV=production bun run _build",
"build:dev": "NODE_ENV=development bun run _build -- --watch",
"start": "NODE_ENV=production bun server/index.js",
"dev": "NODE_ENV=development bun --hot server/index.js",
"lint": "bun --bun eslint",
"lint:fix": "bun --bun eslint --fix",
"format": "bun run lint:fix && bun --bun prettier --write ."
},
"author": "fatlard1993",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/fatlard1993/humanity.git"
},
"dependencies": {
"argi": "github:fatlard1993/argi#e3f79c8",
"lowdb": "^7.0.1",
"nanoid": "^5.0.7",
"qrcode": "^1.5.4",
"vanilla-bean-components": "github:fatlard1993/vanilla-bean-components#a53432b"
},
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.10.0",
"@happy-dom/global-registrator": "^15.7.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"bun-types": "^1.1.27",
"eslint": "^9.10.0",
"eslint-plugin-compat": "^6.0.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-spellcheck": "0.0.20",
"eslint-plugin-testing-library": "^6.3.0",
"eslint-plugin-unicorn": "^55.0.0",
"eslint-plugin-write-good-comments": "^0.2.0",
"globals": "^15.9.0",
"prettier": "3.3.3"
}
}