-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.03 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "api_food",
"version": "1.0.0",
"description": "Api to organize food",
"main": "index.js",
"scripts": {
"test-ci": "jest --color --coverage --forceExit",
"test": "jest --watch",
"test-mocha": "mocha dist/tests/ --exit",
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc-watch --onSuccess \"node dist/index.js\"",
"test:postman": "newman run -e Foods.postman_environment.json Food.postman_collection.json"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/JSiapo/api-schedule.git"
},
"author": "ProgramacionJS",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/JSiapo/api-schedule/issues"
},
"jest": {
"globals": {
"__TS_CONFIG__": "tsconfig.json"
},
"moduleFileExtensions": [
"ts",
"js"
],
"testEnvironment": "node"
},
"homepage": "https://gitlab.com/JSiapo/api-schedule#readme",
"dependencies": {
"bcrypt": "^4.0.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.22.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"node-fetch": "^2.6.0",
"pg": "^7.18.2",
"reflect-metadata": "^0.1.13",
"sqlite3": "^4.1.1",
"typeorm": "^0.2.24"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/chai": "^4.2.11",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.4",
"@types/jest": "^25.2.1",
"@types/jsonwebtoken": "^8.5.0",
"@types/morgan": "^1.9.0",
"@types/node": "^13.11.0",
"@types/node-fetch": "^2.5.7",
"@types/supertest": "^2.0.8",
"@types/tape": "^4.2.34",
"chai": "^4.2.0",
"jest": "^25.2.7",
"jest-express": "^1.11.3",
"mocha": "^7.1.1",
"supertest": "^4.0.2",
"tap-spec": "^5.0.0",
"tape": "^4.13.2",
"ts-jest": "^25.3.1",
"ts-node": "^8.8.2",
"tsc-watch": "^4.2.3",
"typescript": "^3.8.3",
"underscore": "^1.10.2"
}
}