-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.96 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
{
"name": "reminder-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig-build.json",
"build:watch": "npm run build -- --watch",
"start": "node dist/main/server.js",
"dev": "nodemon -L --watch ./dist ./dist/main/server.js",
"start:dev": "concurrently --kill-others-on-fail \"npm run build:watch\" \"npm run dev\"",
"test": "jest --passWithNoTests --no-cache",
"test:staged": "npm run test -- --findRelatedTests",
"test:ci": "npm run test -- --coverage",
"lint": "eslint --ignore-path .gitignore --ext .ts --fix",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pimpre/reminder-backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Pimpre/reminder-backend/issues"
},
"homepage": "https://github.com/Pimpre/reminder-backend#readme",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/jest": "^29.0.3",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"concurrently": "^7.4.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"husky": "^8.0.0",
"jest": "^29.0.3",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.1",
"typescript": "^4.8.3"
},
"dependencies": {
"module-alias": "^2.2.2"
},
"_moduleAliases": {
"@domain": "dist/domain",
"@application": "dist/application",
"@infrastructure": "dist/infrastructure",
"@main": "dist/main"
},
"lint-staged": {
"*.ts": [
"npm run lint",
"npm run test:staged"
]
}
}