forked from vitorsalgado/create-nodejs-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.81 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
78
79
80
81
82
83
84
85
86
{
"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": "tsc --project tsconfig.build.json && forever start -c 'node dist/main.js' ./",
"start:tmp": "forever start -c 'node --experimental-specifier-resolution=node --loader ts-node/esm src/main.ts' ./",
"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": {
"@types/node-fetch": "^2.6.9",
"@types/node-telegram-bot-api": "^0.64.1",
"aptos": "^1.21.0",
"async-retry": "^1.3.3",
"dotenv": "^16.0.0",
"forever": "^4.0.3",
"fs-extra": "^11.1.0",
"node-fetch": "^3.3.2",
"node-telegram-bot-api": "^0.64.0",
"tslib": "^2.3.1"
},
"devDependencies": {
"@commitlint/cli": "^18.4.1",
"@commitlint/config-conventional": "^18.0.0",
"@jest/globals": "^29.0.1",
"@jest/types": "^29.0.1",
"@types/async-retry": "^1.4.8",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^27.4.1",
"@types/node": "^20.1.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.2.14",
"husky": "^8.0.1",
"jest": "^27.5.1",
"lint-staged": "^15.0.2",
"nodemon": "^3.0.1",
"prettier": "^3.0.0",
"supertest": "^6.2.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}