-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "recruitment-task",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "npm run build && node build/index.js",
"format": "prettier --write \"./**/*.{js,json,yaml,yml,md,ts}\"",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "husky install"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.11.10",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.2",
"nock": "^13.2.9",
"prettier": "2.8.0",
"typescript": "^4.7.4"
},
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mysql2": "^2.3.3",
"node-fetch": "^2.6.7",
"reflect-metadata": "^0.1.13",
"source-map-support": "^0.5.21",
"typeorm": "^0.3.11"
}
}