-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.9 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.9 KB
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
{
"name": "learning-mtg-api",
"version": "0.0.0",
"private": true,
"main": "dist/src/app.js",
"scripts": {
"dev": "ts-node-dev --respawn --exit-child --watch src ./src/index.ts",
"lint:fix": "eslint -c .eslintrc.json --fix \"./src/**/*.ts\"",
"lint:ci": "eslint -c .eslintrc.json \"./src/**/*.ts\"",
"build": "tsc",
"validate": "tsc --noEmit --skipLibCheck",
"test": "dotenv -e .env.test -- jest --color",
"test:ci": "jest --color --ci",
"test:unit": "dotenv -e .env.test -- jest --color --testPathPattern=unit\\.test\\.ts",
"test:integration": "dotenv -e .env.test -- jest --color --testPathPattern=integration\\.test\\.ts",
"openapi:build": "swagger-cli bundle --type yaml --outfile ./openapi-dist.yaml ./openapi/openapi.yaml",
"openapi:validate": "swagger-cli validate ./openapi-dist.yaml"
},
"dependencies": {
"@faker-js/faker": "^7.4.0",
"@prisma/client": "^4.2.1",
"better-sqlite3": "^7.4.6",
"cookie-parser": "~1.4.4",
"dayjs": "^1.11.5",
"debug": "~2.6.9",
"express": "~4.16.1",
"lodash": "^4.17.21",
"morgan": "~1.9.1"
},
"devDependencies": {
"@apidevtools/swagger-cli": "^4.0.4",
"@types/better-sqlite3": "^7.4.2",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.7",
"@types/lodash": "^4.14.184",
"@types/morgan": "^1.9.3",
"@types/node": "^18.7.7",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"dotenv-cli": "^6.0.0",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^28.1.3",
"jest-mock-extended": "^2.0.7",
"prisma": "^4.2.1",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"packageManager": "yarn@3.2.2",
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}