-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.17 KB
/
package.json
File metadata and controls
43 lines (43 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
{
"name": "fullstack-backend",
"version": "1.0.0",
"description": "Projeto Fullstack",
"main": "index.js",
"scripts": {
"start": "npm run build && node --inspect ./build/src/index.js",
"dev": "clear && ts-node-dev --transpile-only --ignore-watch node_modules src/index.ts",
"build": "clear && echo \"Transpiling files...\" && tsc && echo \"Done!\" ",
"test": "jest"
},
"keywords": [
"Labenu",
"FullStack",
"Backend"
],
"author": "Bruno Silva",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.5",
"mysql": "^2.18.1",
"uuid": "^8.3.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.8",
"@types/jest": "^26.0.23",
"@types/jsonwebtoken": "^8.5.0",
"@types/knex": "^0.16.1",
"@types/node": "^14.11.2",
"@types/uuid": "^8.3.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.5",
"ts-node-dev": "^1.0.0-pre.63",
"typescript": "^4.0.3"
}
}