-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.13 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
{
"name": "nodejs-api-template",
"version": "0.0.1",
"description": "API template",
"main": "server.js",
"types": "server.d.js",
"files": [
"build"
],
"scripts": {
"prettier": "prettier '**/*.{js,ts}' --ignore-path ./.prettierignore --write",
"build": "rimraf ./build && tsc",
"dev": "npx nodemon",
"start": "npm run build && node build/server.js",
"types": "tsc --noEmit",
"lint": "eslint '*/**/*.{js,ts}'",
"finish": "npm run lint && npm run types",
"prepare": "husky install",
"dev:conc": "concurrently \"npx tsc --watch\" \"nodemon -q build/server.js\"",
"test": "jest --all",
"test-watch": "jest --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/learn-with-me/nodejs-api-template.git"
},
"browserslist": [
"last 2 version "
],
"author": "goel4ever",
"license": "MIT",
"keywords": [
"template",
"javascript",
"package"
],
"bugs": {
"url": "https://github.com/learn-with-me/nodejs-api-template/issues"
},
"homepage": "https://github.com/learn-with-me/nodejs-api-template#readme",
"dependencies": {
"app-root-path": "^3.1.0",
"async_hooks": "^1.0.0",
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.19.2",
"helmet": "^6.0.1",
"pino": "^8.8.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/node": "^18.11.18",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"axios": "^1.6.0",
"concurrently": "^7.6.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsdoc": "^39.6.4",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=18.0.0"
}
}