-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 800 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 800 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
{
"name": "@kitajs/minimal-example",
"private": true,
"version": "1.0.0",
"scripts": {
"build": "kita build && tsc",
"start": "node dist",
"dev": "concurrently -n \"Kit,Tsc,Srv\" -c \"grey,grey,bgBlue\" \"kita watch\" \"tsc -w --preserveWatchOutput\" \"nodemon -q -e js,jsx -w dist dist/index.js\"",
"test": "kita build --dry-run && tsc --noEmit"
},
"devDependencies": {
"@kitajs/cli": "^1.1.30",
"@kitajs/ts-plugin": "^1.1.22",
"@types/node": "^20.11.30",
"concurrently": "^8.2.2",
"nodemon": "^3.1.0",
"typescript": "^5.4.3"
},
"dependencies": {
"@fastify/multipart": "^8.2.0",
"@fastify/sensible": "^5.5.0",
"@kitajs/html": "^3.1.2",
"@kitajs/runtime": "^1.1.17",
"fastify": "^4.26.2",
"pino-pretty": "^11.0.0"
}
}