-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.31 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
{
"name": "ts-coding-challenge-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "rm -rf build && tsc",
"test": "jest",
"start": "node ./build/src/index.ts",
"lint": "eslint --ext ts ./",
"fix:lint": "npm run lint -- --fix",
"prepare": "husky install"
},
"dependencies": {
"axios": "1.2.3",
"express": "4.18.2",
"module-alias": "2.2.2",
"zod": "3.20.2",
"source-map-support": "0.5.21"
},
"devDependencies": {
"@types/express": "4.17.15",
"@types/jest": "29.2.6",
"@typescript-eslint/eslint-plugin": "5.48.2",
"eslint": "8.32.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "4.1.0",
"eslint-import-resolver-typescript": "3.5.3",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jest": "22.17.0",
"eslint-plugin-no-only-tests": "3.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-unicorn": "45.0.2",
"eslint-plugin-unused-imports": "2.0.0",
"husky": "8.0.3",
"jest": "29.3.1",
"lint-staged": "13.1.0",
"prettier": "2.8.3",
"supertest": "6.3.3",
"ts-jest": "29.0.5",
"typescript": "4.9.4"
},
"_moduleAliases": {
"src": "build/src"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{js,md}": "prettier --write"
}
}