-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.39 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.39 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
{
"name": "advanced-node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/main/api",
"build": "tsc -p tsconfig-build.json",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "jest --passWithNoTests --no-cache --runInBand",
"test:watch": "npm test -- --watch",
"test:staged": "npm test -- --findRelatedTests",
"test:coverage": "npm test -- --coverage",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tapiarafael/advanced-node.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tapiarafael/advanced-node/issues"
},
"homepage": "https://github.com/tapiarafael/advanced-node#readme",
"devDependencies": {
"@types/jest": "^29.5.10",
"@types/module-alias": "^2.0.4",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"eslint": "^8.55.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-mock-extended": "^3.0.5",
"lint-staged": "^15.1.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.2"
},
"engines": {
"node": "16.x"
},
"dependencies": {
"module-alias": "^2.2.3",
"rimraf": "^5.0.5"
}
}