-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 1.02 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
{
"name": "assignment-backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "tsc-watch --onSuccess \"node -r ts-node/register/transpile-only -r tsconfig-paths/register -r dotenv/config ./dist/src/index.js\"",
"start": "node -r ts-node/register/transpile-only -r tsconfig-paths/register -r dotenv/config ./dist/src/index.js",
"build": "tsc",
"lint": "eslint ."
},
"license": "ISC",
"dependencies": {
"dotenv": "^16.0.0",
"fastify": "^3.27.1",
"fastify-auth": "^1.1.0",
"fastify-cors": "^6.0.2",
"fastify-plugin": "^3.0.1",
"pino-pretty": "^7.5.1",
"tsc-watch": "^4.6.0"
},
"devDependencies": {
"@noaignite-dk/eslint-config": "^1.2.0",
"@types/cors": "^2.8.12",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.17",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"eslint-import-resolver-typescript": "^2.5.0",
"ts-node": "^10.5.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.5"
}
}