-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.02 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.02 KB
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
{
"name": "naruto-api",
"version": "0.0.1",
"license": "UNLICENSED",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p ./tsconfig.build.json",
"check": "tsc -w --noEmit",
"format": "prettier --write \"src/**/*.{ts,js,json}\" \"test/**/*.ts\" ",
"start": "node dist/main.js",
"start:dev": "tsnd --respawn --transpile-only src/main.ts",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "echo 'no tests!'"
},
"dependencies": {
"@fastify/cors": "^11.0.1",
"fastify": "^5.3.2",
"rimraf": "^6.0.1"
},
"devDependencies": {
"@tsconfig/node21": "^21.0.4",
"@types/express": "^5.0.1",
"@types/node": "^22.15.17",
"@typescript-eslint/eslint-plugin": "^8.32.0",
"@typescript-eslint/parser": "^8.32.0",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"prettier": "^3.5.3",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.8.3"
}
}