-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
61 lines (61 loc) · 1.88 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
{
"name": "super-auto-pets-db",
"version": "1.0.0",
"description": "List of Pets, Food and stats in the game Super Auto Pets",
"main": "src/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"ssr": "ts-node ./src/web/ssr/index.ts",
"typecheck": "tsc -noEmit",
"prod:js": "esbuild ./src/web/live/index.tsx --bundle --outfile=docs/bundle.js --minify --sourcemap",
"dev:js": "esbuild ./src/web/live/index.tsx --bundle --outfile=docs/bundle.js",
"prod:css": "cross-env NODE_ENV=production tailwindcss -o docs/tailwind.css --minify",
"dev:css": "tailwindcss -o docs/tailwind.css",
"prod:build": "npm run ssr && npm run typecheck && npm run prod:js && npm run prod:css",
"dev:build": "npm run ssr && npm run typecheck && npm run dev:js && npm run dev:css",
"dev": "serve docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bencoveney/super-auto-pets-db.git"
},
"keywords": [
"Super",
"Auto",
"Pets",
"Food",
"Stats",
"List",
"Databse"
],
"author": "Ben Coveney",
"license": "MIT",
"bugs": {
"url": "https://github.com/bencoveney/super-auto-pets-db/issues"
},
"homepage": "https://github.com/bencoveney/super-auto-pets-db#readme",
"dependencies": {
"@panelbear/panelbear-js": "^1.3.2"
},
"devDependencies": {
"@types/node": "^16.10.3",
"@types/react": "^17.0.27",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.3.1",
"@types/sharp": "^0.29.2",
"@types/to-ico": "^1.1.1",
"cross-env": "^7.0.3",
"emoji-unicode": "^2.0.1",
"esbuild": "^0.13.8",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.0",
"serve": "^12.0.1",
"sharp": "^0.29.2",
"sitemap": "^7.0.0",
"tailwindcss": "^2.2.16",
"to-ico": "^1.1.5",
"ts-node": "^10.4.0",
"typescript": "^4.4.3"
}
}