-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.35 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
{
"name": "amcc-web-frontend-2023",
"version": "1.0.0",
"description": "amcc web frontend 2023 node module !!",
"main": "index.js",
"scripts": {
"build": "tailwindcss -i ./src/app.css -o ./public/output.css",
"preview": "node ./dist/index.js",
"show": "ts-node src/index.ts",
"dev": "concurrently \"bun --watch src/app.ts\" \"bun run build --watch\"",
"test": "jest",
"build:vercel": "bun run build && bun scripts/transform-paths.ts"
},
"author": "figomager",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-typescript": "^7.23.3",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.25",
"autoprefixer": "^10.4.18",
"babel-jest": "^29.7.0",
"bun-types": "latest",
"jest": "^29.7.0",
"postcss": "^8.4.35",
"prettier": "3.2.5",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
},
"dependencies": {
"@elysiajs/html": "^0.8.0",
"@elysiajs/swagger": "^0.8.5",
"@gtramontina.com/elysia-tailwind": "2.0.0",
"chalk": "4.1.2",
"concurrently": "^8.2.2",
"elysia": "^0.8.17",
"elysia-autoroutes": "^0.5.0",
"nodemon": "^3.1.0",
"typed-html": "^3.0.1"
},
"bun-create": {
"start": "bun run index.ts"
}
}