-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 827 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 827 Bytes
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": "fumoapi",
"version": "0.1.1",
"description": "Api of images of fumos (japanese plushies)",
"main": "src/server.js",
"private": true,
"scripts": {
"start": "node dist/server.js",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"build": "tsc",
"dev": "yarn build && yarn start",
"test": "tap --no-coverage"
},
"author": "Nosesisaid",
"license": "MIT",
"dependencies": {
"@fastify/cors": "7.0.0",
"@fastify/mongodb": "5.0.0",
"@fastify/swagger": "6.x",
"dotenv": "16.0.1",
"fastify": "3.29.0"
},
"devDependencies": {
"@types/node": "17.0.33",
"@types/tap": "15.0.7",
"@typescript-eslint/eslint-plugin": "5.23.0",
"@typescript-eslint/parser": "5.23.0",
"eslint": "8.15.0",
"tap": "16.2.0",
"typescript": "4.6.4"
}
}