-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 927 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 927 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
30
{
"name": "@pandaswhocode/paintbar",
"version": "1.0.0",
"description": "PaintBar Application",
"main": "server.js",
"scripts": {
"start": "echo 'Use: task run (Go server)' && exit 1",
"dev": "echo 'Use: task dev (Go server)' && exit 1",
"start:legacy": "node server.js",
"dev:legacy": "nodemon server.js",
"build:ts": "esbuild web/ts/canvas/app.ts web/ts/auth/login.ts web/ts/profile/profile.ts --bundle --splitting --format=esm --outdir=web/static/dist --minify",
"test": "jest"
},
"dependencies": {
"express": "^5.2.1",
"express-rate-limit": "^8.2.1",
"firebase": "^12.9.0"
},
"devDependencies": {
"@jest/globals": "^30.2.0",
"@types/node": "^25.2.3",
"esbuild": "^0.27.3",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"markdownlint-cli": "^0.47.0",
"nodemon": "^3.1.11",
"prettier": "^3.8.1",
"typescript": "^5.9.3"
}
}