-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 832 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 832 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
31
32
{
"name": "font-server",
"description": "A simple font server for serving fonts to the web.",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"build": "tsc && tsc-alias",
"start": "node dist/index.js",
"dev": "concurrently \"tsc -w\" \"tsc-alias -w\" \"nodemon dist/index.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/fb-sean/font-server.git"
},
"author": "sean sattler <sean@sattler.dev>",
"license": "ISC",
"devDependencies": {
"@types/node": "^22.10.2",
"nodemon": "^3.1.7",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.8.1",
"typescript": "^5.7.2"
},
"dependencies": {
"axios": "1.15.0",
"concurrently": "^9.1.0",
"dotenv": "^16.4.7",
"moment": "^2.30.1",
"tsc-alias": "^1.8.10"
}
}