-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.45 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
41
42
43
44
{
"name": "eau-api",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"dev:scrapper": "ts-node -T -r tsconfig-paths/register src/scrapper/index.ts",
"dev:test": "vitest --ui",
"start": "ts-node -T -r tsconfig-paths/register src/index.ts",
"dev": "nodemon --watch src --exec ts-node -T -r tsconfig-paths/register src/index.ts"
},
"keywords": [],
"author": "Hugo Attal",
"dependencies": {
"@fastify/autoload": "^5.7.1",
"axios": "^1.3.5",
"dotenv": "^16.0.3",
"fastify": "^4.15.0",
"http-errors": "^2.0.0",
"iconv-lite": "^0.6.3",
"jsdom": "^21.1.1",
"mongodb": "^5.2.0",
"mongoose": "^7.0.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"vite-tsconfig-paths": "^4.0.8"
},
"devDependencies": {
"@fastify/type-provider-typebox": "^3.0.0",
"@types/jsdom": "^21.1.1",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitest/ui": "^0.29.8",
"eslint": "^8.37.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-sort-keys-custom-order": "^1.0.5",
"nodemon": "^2.0.22",
"typescript": "^5.0.3",
"vitest": "^0.29.8"
}
}