-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.1 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
{
"name": "@iradofurioso/node-kickstarter",
"version": "1.0.0",
"description": "A boilerplate for building production-ready RESTful APIs using Node",
"main": "index.js",
"scripts": {
"start-prod": "npm run build && node build/index.js",
"start": "npx nodemon --watch src/ -e ts --ignore 'src/**/*.spec.ts' --exec 'npx tsc --project tsconfig.json --skipLibCheck && tsc-alias -p tsconfig.json -f && node --enable-source-maps ./dist/index.js server'",
"format": "prettier --write --no-semi '**/*.ts'",
"format-check": "prettier --no-semi --check '**/*.ts'",
"build": "echo '⚙️ Kickstarting...' && rimraf ./dist/* && npx tsc --project tsconfig.json && npx tsc-alias -p tsconfig.json -f",
"test": "echo \"❌ Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Iradofurioso",
"license": "MIT",
"dependencies": {
"axios": "^0.24.0",
"bcryptjs": "^2.4.3",
"dotenv": "^10.0.0",
"jsonwebtoken": "^8.5.1",
"restify": "^8.6.1",
"tsconfig-paths": "^3.12.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/chai": "^4.3.0",
"@types/jsonwebtoken": "^8.5.9",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.5",
"@types/restify": "^8.5.5",
"@types/typescript": "^2.0.0",
"chai": "^4.3.4",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-generator": "^0.1.1",
"ts-node": "^10.4.0",
"tsc-alias": "^1.7.0",
"tslib": "^2.3.1",
"typescript": "^4.8.3"
},
"_moduleAliases": {
"@root": ".",
"@src": "src",
"@config": "src/config",
"@controllers": "src/controllers",
"@middlewares": "src/middlewares",
"@models": "src/models",
"@modules": "src/modules",
"@resources": "src/resources",
"@routes": "src/routes",
"@services": "src/services",
"@tests": "src/tests",
"@types": "src/types",
"@utils": "src/utils"
},
"repository": {
"type": "git",
"url": "https://github.com/iradofurioso/node-kickstarter.git"
},
"homepage": "https://github.com/iradofurioso/node-kickstarter/blob/master/README.md"
}