-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.41 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
{
"name": "energy-api",
"version": "1.0.0",
"description": "Energy API",
"main": "src/app.js",
"scripts": {
"start": "nodemon src/app",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"format": "prettier --check src/*",
"prepare": "cd ../ && husky install server/.husky"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-validator": "^6.14.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"method-override": "^3.0.0",
"mongoose": "^6.1.1",
"mongoose-bcrypt": "^1.9.0",
"nodemon": "^2.0.15",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4",
"prettier": "^2.5.1",
"sequelize": "^6.12.0-beta.1",
"validator": "^13.7.0"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@types/node": "^16.11.12",
"eslint": "^8.4.1",
"husky": "^7.0.4"
},
"lint-staged": {
"*.js": [
"prettier --single-quote --write",
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/sinanaksu/energy-api.git"
},
"author": "Sinan Aksu <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/sinanaksu/energy-api/issues"
},
"homepage": "https://github.com/sinanaksu/energy-api#readme"
}