-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.46 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.46 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
{
"name": "advanced-node-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/main/api",
"build": "rimraf dist && 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/giovanivrech/advanced-node-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/giovanivrech/advanced-node-api/issues"
},
"homepage": "https://github.com/giovanivrech/advanced-node-api#readme",
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/module-alias": "^2.0.1",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"eslint": "^8.32.0",
"eslint-config-standard-with-typescript": "^30.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"jest": "^29.3.1",
"jest-mock-extended": "^3.0.1",
"lint-staged": "^13.1.0",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4"
},
"engines": {
"node": "16.x"
},
"dependencies": {
"module-alias": "^2.2.2",
"rimraf": "^4.1.1"
}
}