-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.32 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
{
"name": "@backs/static-host",
"version": "1.0.0",
"description": "A server that hosts static files.",
"main": "dist/index.js",
"scripts": {
"dev": "ts-node src/index.ts",
"dev:watch": "nodemon -x ts-node src/index.ts",
"start": "node dist/index.js",
"start:watch": "nodemon dist/index.js",
"build": "tsc && prettier --write --log-level=silent ./dist",
"lint": "prettier --check ./src && eslint ./src --ext .ts",
"check": "tsc --noEmit",
"format": "prettier --write ./src && eslint ./src --ext .ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/backiscute/static-host.git"
},
"author": {
"name": "Back",
"email": "me@back.rs",
"url": "https://back.rs"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/backiscute/static-host/issues"
},
"homepage": "https://github.com/backiscute/static-host#readme",
"dependencies": {
"@types/express": "^4.17.21",
"dotenv": "^16.4.5",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"express": "^4.19.2",
"prettier": "^3.1.1",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/node": "^18.14.1",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"nodemon": "^3.0.2",
"ts-node": "^10.9.1"
}
}