-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.26 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.26 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
46
47
48
49
{
"name": "sunshine-backend",
"version": "0.1.0",
"private": false,
"description": "This app allows users to be happy and enjoy the sun sunshine",
"keywords": [
"express",
"api",
"rest",
"jwt"
],
"author": "Leonardo Gomes",
"license": "MIT",
"scripts": {
"start": "ts-node-dev --respawn --transpile-only src/app.ts",
"start:prod": "node ./build/app.js",
"build": "tsc --build",
"build:watch": "tsc --build --watch",
"test": "jest -i --colors --verbose --detectOpenHandles"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"http-status": "^1.6.2",
"joi": "^17.7.1",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.9.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.19.2",
"@types/config": "^3.3.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.4.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.14.0",
"@types/supertest": "^2.0.12",
"cz-conventional-changelog": "^3.3.0",
"jest": "^29.4.3",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
}
}