-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.17 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.17 KB
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
{
"name": "todo-list-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"prestart": "npm run build",
"start": "node dist/src/server.js",
"test": "mocha ./tests/**/*.spec.ts",
"lint": "eslint --no-inline-config --no-error-on-unmatched-pattern -c .eslintrc.json . --ext .js, .jsx",
"dev": "tsx watch src/server.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/chai-as-promised": "^7.1.5",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.17",
"@types/humps": "^2.0.3",
"@types/mocha": "^10.0.1",
"@types/node": "^20.5.4",
"@types/sinon": "^10.0.16",
"@types/sinon-chai": "^3.2.9",
"chai": "^4.3.8",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.4.0",
"eslint-config-trybe-backend": "^2.1.0",
"mocha": "^10.2.0",
"sinon": "^15.2.0",
"sinon-chai": "^3.7.0",
"tsx": "^3.12.8",
"typescript": "^5.2.2"
},
"dependencies": {
"compression": "^1.7.4",
"express": "^4.18.2",
"helmet": "^7.0.0",
"humps": "^2.0.1",
"joi": "^17.9.2",
"mysql2": "^2.3.0"
}
}