-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.65 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
{
"name": "ymaps3-test-server",
"version": "1.0.4",
"private": "true",
"description": "Test server for demonstrating work with the tile and bbox data loading API for the YMaps API",
"scripts": {
"build": "ENVIRONMENT=production tsc -b tsconfig.json",
"dev": "ts-node ./src/index.ts",
"start": "nodemon",
"start:prod": "pm2-runtime --instances max dist/index.js",
"lint": "eslint ./ && tsc --noemit --noErrorTruncation",
"test": "ENVIRONMENT=testing jest",
"bump": "npm version patch --no-git-tag-version && npm run bump:git",
"bump:git": "git add --all && git commit -m \"New version $npm_package_version\" && git tag $npm_package_version && git push --tags origin HEAD:main"
},
"keywords": [],
"author": "[email protected]",
"license": "Apache-2",
"dependencies": {
"@hapi/boom": "^10.0.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"got": "9.3.2",
"js-yaml": "^4.1.0",
"pg": "^8.11.3",
"pm2": "^5.3.0",
"swagger-ui-express": "^5.0.0",
"winston": "^3.10.0",
"zod": "^3.22.1"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/geojson": "^7946.0.10",
"@types/got": "^9.6.12",
"@types/jest": "^29.5.3",
"@types/js-yaml": "^4.0.5",
"@types/pg": "^8.10.2",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"jest": "^29.6.2",
"nock": "^13.3.3",
"nodemon": "^3.0.1",
"prettier": "^3.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}