-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.36 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
{
"name": "roleroll",
"version": "1.0.0",
"description": "see https://github.com/thedodd/trunk/issues/415#issuecomment-1207394128",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:js": "esbuild javascript/index.ts --bundle --outfile=assets/index.js --define:PROD=true --minify",
"dev:js": "esbuild javascript/index.ts --bundle --outfile=assets/index.js --watch --define:PROD=false",
"build:rs": "trunk build --release",
"dev:rs": "trunk serve",
"build:css": "tailwindcss -i tailwind.css -o assets/index.css --minify",
"dev:css": "tailwindcss -i tailwind.css -o assets/index.css --watch",
"dev": "concurrently npm:dev:js npm:dev:rs npm:dev:css",
"build": "npm run build:js && npm run build:css && npm run build:rs",
"deploy": "npm run build && firebase deploy --only hosting"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eatski/roleroll.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/eatski/roleroll/issues"
},
"homepage": "https://github.com/eatski/roleroll#readme",
"dependencies": {
"@firebase/firestore": "^3.5.0",
"esbuild": "^0.15.7"
},
"devDependencies": {
"concurrently": "^7.4.0",
"firebase-tools": "^11.16.0",
"tailwindcss": "^3.1.8",
"typescript": "^4.8.4"
}
}