-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.51 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
{
"name": "portfolio",
"version": "1.0.0",
"description": "Portfolio of Suriyaa Kumar",
"main": "index.js",
"scripts": {
"start": "npx nodemon index",
"lint": "eslint **/*.{js,ejs,css} --ignore-pattern node_modules/",
"release": "commit-and-tag-version",
"release:minor": "commit-and-tag-version --release-as minor",
"release:patch": "commit-and-tag-version --release-as patch",
"release:major": "commit-and-tag-version --release-as major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/suriyaakumar/portfolio.git"
},
"keywords": [
"Suriyaa",
"suriyaakumar",
"Suriyaa Kumar",
"Software Developer",
"SDE",
"Developer",
"Programmer",
"Portfolio"
],
"author": "Suriyaa Kumar",
"license": "ISC",
"bugs": {
"url": "https://github.com/suriyaakumar/portfolio/issues"
},
"homepage": "https://github.com/suriyaakumar/portfolio#readme",
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"commit-and-tag-version": "^10.1.0",
"eslint": "^8.21.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.19",
"prettier": "^2.7.1"
},
"dependencies": {
"ejs": "^3.1.8",
"express": "^4.18.1"
},
"lint-staged": {
"**/*.{js}": [
"prettier --write",
"eslint --fix"
]
}
}