-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.66 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
59
60
61
62
63
64
{
"name": "NoteIT",
"version": "1.1.3",
"description": "A content heavy website, providing notes for Tribhuvan University students",
"main": "init.js",
"scripts": {
"dev": "nodemon init",
"format": "prettier --write ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^6.5.5",
"atob": "^2.1.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"csurf": "^1.10.0",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"express-session": "^1.17.3",
"helmet": "^4.0.0",
"helmet-csp": "^3.2.0",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"mongodb": "^3.3.2",
"morgan": "^1.10.0",
"nodemon": "^1.19.1",
"passport": "^0.4.1",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"prettier": "^2.8.3",
"validator": "^11.1.0"
},
"devDependencies": {
"eslint": "^7.22.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.22.1",
"regenerator-runtime": "^0.13.7"
},
"_moduleAliases": {
"@routers": "./routers",
"@controllers": "./controllers",
"@models": "./models",
"@utils": "./utils"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"moduleNameMapper": {
"^@routers(.*)$": "<rootDir>/backend/routers$1",
"^@controllers(.*)$": "<rootDir>/backend/controllers$1",
"^@models(.*)$": "<rootDir>/backend/models$1",
"^@utils(.*)$": "<rootDir>/backend/utils$1"
}
},
"browserslist": [
"last 2 Chrome versions"
]
}