-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (35 loc) · 884 Bytes
/
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
{
"name": "shorter-URL",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "./node_modules/typescript/bin/tsc",
"start": "node dist/index.js",
"dev": "./node_modules/.bin/ts-node-dev src/index.ts"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.6",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"esm": "^3.2.25",
"jest": "^29.4.3",
"redis-mock": "^0.56.3",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
},
"dependencies": {
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"eslint": "^8.34.0",
"express": "^4.18.2",
"mongoose": "^6.9.1",
"redis": "^4.6.4",
"winston": "^3.8.2"
}
}