-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
75 lines (75 loc) · 2.4 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
{
"name": "typescript-aniskip-api",
"version": "2.0.576",
"description": "Provides the opening and ending skip times for the Aniskip extension",
"repository": "https://github.com/lexesjan/typescript-aniskip-api",
"contributors": [
"Lexes Jan Mantiquilla <[email protected]>",
"Dabreadman <[email protected]>"
],
"license": "MIT",
"private": true,
"scripts": {
"build": "tsc --project ./",
"clean": "rimraf dist",
"dev": "cross-env NODE_ENV=development nodemon --exec 'yarn ts-node' --legacy-watch src/main.ts",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"start": "cross-env NODE_ENV=production node dist/src/main.js",
"test": "jest --coverage --maxWorkers=25% --testPathIgnorePatterns=\"/node_modules/|/dist/\""
},
"dependencies": {
"@nestjs/common": "^9.4.3",
"@nestjs/config": "^2.3.4",
"@nestjs/core": "^9.4.3",
"@nestjs/platform-express": "^9.4.3",
"@nestjs/swagger": "^6.3.0",
"@nestjs/throttler": "^4.2.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"express": "^4.18.2",
"helmet": "^7.0.0",
"ioredis": "^5.3.2",
"md5": "^2.3.0",
"morgan": "^1.10.0",
"nestjs-throttler-storage-redis": "^0.4.0",
"pg": "^8.11.3",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"swagger-ui-express": "^4.6.3"
},
"devDependencies": {
"@nestjs/testing": "^9.4.3",
"@types/express": "^4.17.17",
"@types/ioredis": "^5.0.0",
"@types/jest": "^29.5.5",
"@types/md5": "^2.3.2",
"@types/morgan": "^1.9.5",
"@types/node": "^20.6.1",
"@types/pg": "^8.10.2",
"@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"cross-env": "^7.0.3",
"eslint": "8.49.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"pg-mem": "^2.6.13",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"uuid": "^9.0.1"
},
"packageManager": "[email protected]"
}