-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.4 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "ts-template",
"version": "1.0.0",
"description": "",
"main": "dist/src/app.js",
"scripts": {
"postinstall": "npm run prepare",
"start:dev": "npx cross-env NODE_ENV=development ts-node-dev --respawn --transpile-only src/app.ts",
"start:prod": "npx cross-env NODE_ENV=production node --enable-source-maps dist/src/app",
"build": "tsc",
"prebuild": "npx rimraf dist",
"ts:check": "tsc --noEmit",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"check": "npm run ts:check && npm run lint",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest --setupFiles dotenv/config",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"prepare": "husky",
"update": "npx npm-check-updates -u && npx rimraf node_modules package-lock.json && npm i --legacy-peer-deps",
"postupdate": "npm run check && npm run lint:fix"
},
"author": "daria_smyr",
"license": "MIT",
"devDependencies": {
"@jetbrains/eslint-config": "^5.4.2",
"@types/compression": "^1.7.5",
"@types/jest": "29.5.13",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-comments": "^1.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-no-secrets": "^1.0.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sonarjs": "^0.25.1",
"eslint-plugin-unicorn": "^55.0.0",
"globals": "^15.9.0",
"husky": "^9.1.6",
"jest": "29.7.0",
"npm-check-updates": "^17.1.1",
"prettier": "^3.3.3",
"preview-email": "^3.1.0",
"prisma": "^5.19.1",
"rimraf": "^6.0.1",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"ts-jest": "29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "4.2.0",
"typescript": "5.6.2",
"typescript-eslint": "^8.5.0"
},
"dependencies": {
"dotenv": "^16.4.5"
}
}