-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.37 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
{
"name": "backend_nodej",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha -r ts-node/register test/*.test.ts --exit",
"build": "tsc",
"start": "node dist/src/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/src/index.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/gabrieltorreswm/gabriel_torres_repos.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gabrieltorreswm/gabriel_torres_repos/issues"
},
"homepage": "https://github.com/gabrieltorreswm/gabriel_torres_repos#readme",
"dependencies": {
"@types/chai-as-promised": "^7.1.5",
"@types/json2csv": "^5.0.3",
"chai-as-promised": "^7.1.1",
"cors": "^2.8.5",
"csv-generate": "^4.2.1",
"csv-writer": "^1.6.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"json2csv": "^5.0.7",
"pg": "^8.8.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.11"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@types/sinon": "^10.0.13",
"chai": "^4.3.7",
"concurrently": "^7.6.0",
"mocha": "^10.2.0",
"nodemon": "^2.0.20",
"sinon": "^15.0.1",
"typescript": "^4.9.4"
}
}