-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.7 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "todo-api",
"version": "1.0.0",
"description": "Small API for task management",
"main": "src/main.ts",
"scripts": {
"build": "rimraf ./dist && tsc",
"linter:fix": "eslint '**/**/*.{ts,tsx}' --quiet --fix",
"test": "npm run test:e2e",
"test:e2e": "mocha --timeout 60000 -r ts-node/register 'tests/e2e/**/*.ts'",
"start": "node ./dist/main.js",
"start:dev": "ts-node-dev --clear --watch --debug --respawn --transpile-only ./src/main.ts"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/sergio17791/todo-api.git"
},
"keywords": [
"todo",
"task",
"management"
],
"author": "Sergio Muñoz",
"license": "ISC",
"bugs": {
"url": "https://github.com/sergio17791/todo-api/issues"
},
"homepage": "https://github.com/sergio17791/todo-api#readme",
"dependencies": {
"dotenv": "16.0.3",
"express": "4.18.2",
"express-validator": "6.14.2",
"http-status-codes": "2.2.0",
"inversify": "6.0.1",
"mongoose": "6.8.2",
"reflect-metadata": "0.1.13"
},
"devDependencies": {
"@types/chai-as-promised": "7.1.5",
"@types/express": "4.17.15",
"@types/inversify": "2.0.33",
"@types/mocha": "10.0.1",
"@types/node": "18.11.18",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "5.48.0",
"@typescript-eslint/parser": "5.48.0",
"chai": "4.3.7",
"chai-as-promised": "7.1.1",
"eslint": "8.31.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-no-only-tests": "3.1.0",
"eslint-plugin-prettier": "4.2.1",
"mocha": "10.2.0",
"prettier": "2.8.1",
"rimraf": "^3.0.2",
"supertest": "6.3.3",
"ts-node-dev": "2.0.0",
"typescript": "4.9.4"
}
}