-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.64 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
{
"name": "luck",
"version": "1.0.0",
"description": "Luck - Server Application",
"main": "dist/index.js",
"author": "Daniel Karski",
"license": "MIT",
"bugs": {
"url": "https://github.com/dkarski/luck/issues"
},
"homepage": "https://github.com/dkarski/luck#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/dkarski/luck.git"
},
"scripts": {
"prepare": "husky install",
"test": "echo \"no unit test specified\"",
"test:integration": "jest --config=jest.config.integration-test.json",
"lint": "eslint . --ext .ts",
"build": "npx tsc",
"start": "node dist/src/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/src/index.js\""
},
"lint-staged": {
"{**/*,*}.{ts}": "prettier --write --ignore-unknown"
},
"dependencies": {
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.16",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"mongoose": "^5.13.15",
"supertest": "^6.3.3"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.8",
"@types/node": "^20.9.0",
"@types/supertest": "^2.0.16",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"concurrently": "^8.2.2",
"eslint": "^8.53.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"nodemon": "^3.0.1",
"prettier": "2.8.8",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"engines": {
"node": "18.18.2",
"npm": "9.8.1"
}
}