-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.29 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.29 KB
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
{
"name": "nodejs-server-boilerplate",
"version": "1.0.0",
"main": "index.ts",
"scripts": {
"start:dev": "nodemon",
"format:prettier": "npx prettier --write src/**/*.ts",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{html,css,less,ejs}": [
"prettier --write",
"git add"
]
},
"author": {
"email": "bengtson.neves@gmail.com",
"name": "Júlio Bengtson Neves",
"url": "https://github.com/JBN1997"
},
"dependencies": {
"@types/yup": "^0.32.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"helmet": "^6.0.1",
"lodash": "^4.17.21",
"tsconfig-paths": "^4.1.2"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/lodash": "^4.14.191",
"@types/morgan": "^1.9.4",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"eslint": "^8.32.0",
"eslint-config-standard-with-typescript": "^33.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}