-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.1 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
{
"name": "meteo-france-api",
"version": "1.0.0",
"description": "APIs for Android App Meteo-France Montagnes infos",
"main": "dist/index.js",
"scripts": {
"start": "tsc && ENV_FILE=./config/.env.prod node -r tsconfig-paths/register bin/app.js",
"dev": "ENV_FILE=./config/.env.dev ts-node-dev -r tsconfig-paths/register ./src/app.ts",
"lint": "eslint . --ext .ts",
"build": "tsc",
"run": "ENV_FILE=./config/.env.dev node -r tsconfig-paths/register bin/app.js",
"test": "ENV_FILE=./config/.env.test jest --coverage"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/skails/meteo-france-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://bitbucket.org/skails/meteo-france-api/issues"
},
"homepage": "https://bitbucket.org/skails/meteo-france-api#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/faker": "^5.5.9",
"@types/jest": "^26.0.24",
"@types/mongodb-memory-server": "^2.3.0",
"@types/node": "^17.0.7",
"@types/rewire": "^2.5.28",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"class-transformer": "^0.5.1",
"faker": "^5.5.3",
"jest": "^26.6.3",
"mongodb-memory-server": "^8.1.0",
"rewire": "^6.0.0",
"supertest": "^6.1.6",
"ts-jest": "^26.5.6",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.4"
},
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/dotenv-parse-variables": "^2.0.1",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.3",
"@types/validator": "^13.7.1",
"@types/yamljs": "^0.2.31",
"bcrypt": "^5.0.1",
"connect": "^3.7.0",
"dotenv-extended": "^2.9.0",
"dotenv-parse-variables": "^2.0.0",
"express": "^4.17.2",
"express-openapi-validator": "^4.13.5",
"mongoose": "^6.1.5",
"morgan": "^1.10.0",
"morgan-body": "^2.6.6",
"node-cache": "^5.1.2",
"swagger-routes-express": "^3.3.1",
"tsconfig-paths": "^3.12.0",
"validator": "^13.7.0",
"winston": "^3.3.3",
"yamljs": "^0.3.0"
}
}