-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.95 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.95 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
{
"name": "devtools",
"version": "1.0.0",
"description": "Debug Node.js, TypeScript, Jest with Google Chrome DevTools",
"main": "./dist/main/server.js",
"scripts": {
"start": "npm run build && node ./dist/api/server.js",
"build": "rimraf dist && npx tsc -p tsconfig-build.json",
"start:dev": "npx nodemon",
"start:debug": "npx nodemon --exec 'node --inspect-brk=9229 --require ts-node/register src/api/server.ts'",
"test": "npx jest --passWithNoTests --runInBand --no-cache --logHeapUsage",
"test:debug": "node --inspect-brk=9229 ./node_modules/.bin/jest --passWithNoTests --runInBand --no-cache --logHeapUsage",
"test:clear": "npx jest --clearCache",
"test:coverage": "npx jest --coverage",
"lint": "npx eslint --fix 'src/**/*' 'tests/**/*' && tsc --noEmit -p ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/jdssl/node-devtools.git"
},
"keywords": [
"nodejs",
"typescript",
"jest"
],
"author": "JonatanLima <jotanlima@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jdssl/node-devtools/issues"
},
"homepage": "https://github.com/jdssl/node-devtools#readme",
"engines": {
"npm": "10",
"node": "20"
},
"_moduleAliases": {
"@": "dist"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.51.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.2.0",
"jest": "^29.7.0",
"module-alias": "^2.2.3",
"nodemon": "^3.1.10",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.5"
},
"dependencies": {
"express": "^4.21.2"
}
}