-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.1 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
{
"name": "mock-server",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint --fix --ext .js,.jsx .",
"build": "tsc -p .",
"start": "NODE_ENV=prod node dist/index.js",
"dev": "NODE_ENV=dev tsx watch --clear-screen=false --env-file=.env src/index.ts"
},
"type": "module",
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/eslint-parser": "^7.23.3",
"@babel/preset-env": "^7.23.6",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"dotenv": "^16.3.1",
"eslint": "^8.55.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-node": "^11.1.0",
"fastify-tsconfig": "^2.0.0",
"nodemon": "^3.0.2",
"ts-node": "^10.9.2",
"tsx": "^4.19.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@fastify/cors": "^10.0.0",
"@fastify/swagger": "^9.0.0",
"@fastify/swagger-ui": "^5.0.1",
"fastify": "^5.0.0",
"fastify-plugin": "^5.0.0"
}
}