-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.07 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
{
"name": "node-boilerplate",
"version": "1.0.0",
"description": "A Setup boilerplate with node project with express, typescript and test",
"main": "src/server.ts",
"scripts": {
"dev": "nodemon",
"start": "NODE_ENV=production node -r ./build/server.js",
"build": "tsc --build tsconfig.build.json",
"prepare": "husky install",
"lint": "eslint \"./src/**/*.ts\"",
"prettier:check": "prettier --config .prettierrc \"./src/**/*.+(js|json|ts)\" --check --ignore-unknown",
"prettier:write": "prettier --config .prettierrc \"./src/**/*.+(js|json|ts)\" --write --ignore-unknown",
"test": "mocha -r tsconfig-paths/register -r ts-node/register \"./src/test/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/renatoxm/node-boilerplate.git"
},
"author": "Renato Nabinger",
"license": "MIT",
"bugs": {
"url": "https://github.com/renatoxm/node-boilerplate/issues"
},
"homepage": "https://github.com/renatoxm/node-boilerplate#readme",
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"pino": "^8.11.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@types/busboy": "^1.5.0",
"@types/chai": "^4.3.4",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.1",
"@types/mocha": "^10.0.1",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"chai": "^4.3.7",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"mocha": "^10.2.0",
"nodemon": "^2.0.21",
"pino-pretty": "^9.4.0",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^3.14.2",
"typescript": "^4.9.5"
},
"lint-staged": {
"./src/**/*.+(ts|js)": [
"npm run lint",
"npm run prettier:check"
]
}
}