-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 818 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 818 Bytes
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
{
"name": "bible-vision",
"version": "1.0.0",
"main": "server.js",
"scripts": {
"test": "playwright test",
"start": "node server.js",
"tailwind": "tailwindcss -i ./tailwind/input.css -o ./public/output.css --watch",
"serve": "concurrently \"npm run tailwind\" \"npm start\"",
"build": "esbuild public/logic.js --bundle --outfile=public/bundle.js --minify",
"dev": "concurrently \"npm run tailwind\" \"npm start\" \"npm run build -- --watch\""
},
"author": "",
"license": "ISC",
"dependencies": {
"@tailwindcss/cli": "^4.1.14",
"concurrently": "^9.2.1",
"esbuild": "^0.27.0",
"playwright": "^1.56.0"
},
"devDependencies": {
"@playwright/test": "^1.56.0",
"tailwindcss": "^4.1.14"
},
"directories": {
"test": "tests"
},
"description": ""
}