generated from kaiwalyakoparkar/node-js-project-template
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 1.16 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
{
"name": "datastax-backend",
"version": "1.10.2",
"description": "This is the backend for the application made for datastax hackathon",
"main": "index.js",
"scripts": {
"start": "nodemon ./server.js",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaiwalyakoparkar/node-js-project-template.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/kaiwalyakoparkar/node-js-project-template/issues"
},
"homepage": "https://github.com/kaiwalyakoparkar/node-js-project-template#readme",
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.0",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@astrajs/collections": "^0.1.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"morgan": "^1.10.0",
"nodemon": "^2.0.12"
}
}