-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
36 lines (36 loc) · 1.06 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
{
"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": "^8.5.0",
"fastify": "^4.28.1",
"rimraf": "^5.0.9"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.5.8",
"@tsconfig/node21": "^21.0.3",
"@types/express": "^4.17.21",
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.3.2",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.3"
}
}