-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
77 lines (77 loc) · 2.38 KB
/
package.json
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
67
68
69
70
71
72
73
74
75
76
77
{
"name": "create-nodejs-ts",
"version": "3.0.2",
"description": "NodeJS Starter Project Kit",
"type": "module",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"private": false,
"bin": {
"create-nodejs-ts": "cmd/create-nodejs-ts/index.js"
},
"scripts": {
"start": "node dist/main.js",
"start:dev": "nodemon --ext js,ts,json,env --exec 'node --experimental-specifier-resolution=node --loader ts-node/esm' src/main.ts",
"prepare": "husky install",
"build": "tsc --project tsconfig.build.json",
"build:clean": "rm -rf tsconfig.build.tsbuildinfo && rm -rf ./dist",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --detectOpenHandles",
"test:coverage": "npm run test -- --coverage",
"test:ci": "npm run test -- --colors --coverage --ci",
"lint": "eslint --ext .ts,.js .",
"format": "prettier \"./**\" --write --ignore-unknown",
"format:check": "prettier \"./**\" --ignore-unknown --check"
},
"author": {
"name": "Vitor Hugo Salgado",
"email": "[email protected]",
"url": "https://github.com/vitorsalgado"
},
"license": "MIT",
"repository": "git+https://github.com/vitorsalgado/create-nodejs-ts.git",
"bugs": {
"url": "https://github.com/vitorsalgado/create-nodejs-ts/issues"
},
"homepage": "https://github.com/vitorsalgado/create-nodejs-ts#readme",
"keywords": [
"nodejs",
"nodejs-boilerplate",
"typescript",
"typescript-boilerplate",
"starter",
"boilerplate",
"scaffold",
"template"
],
"dependencies": {
"dotenv": "^16.0.0",
"fs-extra": "^11.1.0",
"tslib": "^2.3.1"
},
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@jest/globals": "^29.0.1",
"@jest/types": "^29.0.1",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^27.4.1",
"@types/node": "^22.0.0",
"@types/supertest": "^6.0.1",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"cross-env": "^7.0.3",
"eslint": "^8.12.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-tsdoc": "^0.3.0",
"husky": "^9.0.7",
"jest": "^27.5.1",
"lint-staged": "^15.0.2",
"nodemon": "^3.0.1",
"prettier": "^3.0.0",
"supertest": "^7.0.0",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}