-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.72 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.72 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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "granularity-api",
"version": "1.0.0",
"description": "Backend for Granularity!",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "jest src/tests --runInBand --coverage",
"lint": "eslint --ext .js .",
"prettier": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/getgranularity/granularity-api.git"
},
"keywords": [
"Node.js"
],
"author": "Nihal",
"license": "ISC",
"bugs": {
"url": "https://github.com/getgranularity/granularity-api/issues"
},
"homepage": "https://github.com/getgranularity/granularity-api#readme",
"engines": {
"node": "14.16.0",
"npm": "6.14.11"
},
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"log4js": "^6.3.0",
"mailgun-js": "^0.22.0",
"moment-timezone": "^0.5.33",
"mongoose": "^5.12.11",
"morgan": "^1.10.0",
"p-map": "^4.0.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-node": "^4.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"jest": "^27.0.1",
"jest-fetch-mock": "^2.1.2",
"leasot": "^8.0.0",
"lint-staged": "^10.2.7",
"prettier": "^2.0.5",
"supertest": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "leasot -x 'src/**/*.js'",
"pre-push": "echo PUSHING NOW!!!"
}
},
"lint-staged": {
"*.js": [
"npm run lint",
"npm run prettier",
"git add ."
]
}
}