-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.58 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": "url-shortener",
"version": "1.0.0",
"description": "URL shortening service using by using Node and Typescript",
"main": "server.ts",
"scripts": {
"start": "npm run build && cross-env NODE_ENV=production node dist/server.js",
"dev": "cross-env NODE_ENV=development nodemon",
"build": "cross-env NODE_ENV=production tsc",
"lint": "eslint --ext .ts src/",
"lint:fix": "npm run lint -- --fix",
"test": "jest -c jest.config.js",
"test:coverage": "jest --coverage -c jest.config.js",
"test:integration": "jest -c jest.config.integration.js",
"test:end-to-end": "jest -c jest.config.end-to-end.js"
},
"repository": {
"type": "git",
"url": "http://finn-gmbh-favfue@git.codesubmit.io/finn-gmbh/the-shortest-url-jzwwyt"
},
"author": "jissweb@gmail.com",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^28.1.7",
"@types/node": "^18.7.9",
"@types/supertest": "^2.0.12",
"@types/swagger-jsdoc": "^6.0.1",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"jest": "^28.1.3",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"supertest": "^6.2.4",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@types/swagger-ui-express": "^4.1.3",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"joi": "^17.6.0",
"nanoid": "^3.2.0",
"pino": "^8.4.2",
"swagger-jsdoc": "^6.2.5",
"swagger-ui-express": "^4.5.0"
}
}