-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.57 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
{
"name": "desafio-tecnico-music-playce",
"version": "1.0.0",
"description": "REST API para CRUD de Faturas",
"main": "src/server.ts",
"engines": { "node": "12.18.3" },
"scripts": {
"start": "node dist/src/server.js",
"dev": "tsnd --transpile-only --ignore-watch node_modules --respawn src/server.ts",
"test": "NODE_ENV=TEST jest",
"postinstall": "tsc",
"watch-node": "tsnd --transpile-only --ignore-watch node_modules --respawn src/server.ts",
"watch-ts": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freirart/desafio-tecnico-music-playce.git"
},
"keywords": [
"typescript",
"node",
"crud",
"javascript",
"js",
"ts"
],
"author": "Artur Freire dos Santos",
"license": "MIT",
"bugs": {
"url": "https://github.com/freirart/desafio-tecnico-music-playce/issues"
},
"homepage": "https://github.com/freirart/desafio-tecnico-music-playce#readme",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.13"
},
"devDependencies": {
"@types/cors": "^2.8.8",
"@types/express": "^4.17.9",
"@types/jest": "^26.0.15",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose": "^5.10.0",
"factory-girl": "^5.0.4",
"faker": "^5.1.0",
"jest": "^26.6.3",
"supertest": "^6.0.1",
"ts-jest": "^26.4.4",
"ts-node-dev": "^1.0.0",
"typescript": "^4.0.5"
},
"optionalDependencies": {
"win-node-env": "^0.4.0"
}
}