-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1023 Bytes
/
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
{
"name": "simple-file-storage",
"version": "1.0.0",
"description": "",
"main": "app.ts",
"scripts": {
"start:dev": "tsx watch ./src/main/app.ts",
"build": "tsup ./src",
"start": "node ./dist/main/app.js",
"lint:fix": "eslint --fix ./src/main"
},
"author": "gabrielbsx",
"license": "ISC",
"devDependencies": {
"@types/pump": "^1.1.1",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"eslint": "^8.36.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"tsc": "^2.0.4",
"tsup": "^7.2.0",
"tsx": "^3.12.6",
"typescript": "^5.0.2",
"vitest": "^0.29.7"
},
"dependencies": {
"@fastify/formbody": "^7.4.0",
"@fastify/middie": "^8.1.0",
"@fastify/multipart": "^7.5.0",
"@fastify/static": "^6.9.0",
"dotenv": "^16.0.3",
"fastify": "^4.15.0",
"pump": "^3.0.0",
"qs": "^6.11.1"
}
}