-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
110 lines (110 loc) · 3.29 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "NoteIT",
"version": "1.1.3",
"description": "A content heavy website, providing notes for Tribhuvan University students",
"main": "main.js",
"scripts": {
"backend": "cross-env NODE_ENV=development nodemon backend/init --ignore node_modules/",
"frontend": "webpack serve",
"dev": "concurrently \"npm run backend\" \"npm run frontend\"",
"build": "webpack",
"check-build": "cross-env NODE_ENV=production concurrently \"webpack\" \"node backend/init\"",
"test": "jest --runInBand",
"test-watch": "jest --watch --runInBand"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.12.13",
"@sendgrid/mail": "^6.5.5",
"atob": "^2.1.2",
"babel-loader": "^8.0.6",
"compression": "^1.7.4",
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"csurf": "^1.10.0",
"dompurify": "^2.2.6",
"dotenv": "^8.1.0",
"dotenv-webpack": "^1.8.0",
"express": "^4.17.1",
"express-session": "^1.16.2",
"extended-normalize.css": "^2.4.0",
"helmet": "^4.0.0",
"helmet-csp": "^3.2.0",
"jsonwebtoken": "^8.5.1",
"marked": "^2.0.3",
"module-alias": "^2.2.2",
"mongodb": "^3.3.2",
"mongoose": "^5.9.19",
"morgan": "^1.10.0",
"nodemon": "^1.19.1",
"passport": "^0.4.1",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-ga": "^3.3.0",
"react-router-dom": "^5.2.0",
"sanitize-html": "^2.3.3",
"sass": "^1.32.8",
"socket.io": "^2.2.0",
"validator": "^11.1.0"
},
"devDependencies": {
"@prettier/plugin-xml": "^0.13.1",
"@svgr/webpack": "^5.5.0",
"babel-eslint": "^10.1.0",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^3.0.0",
"closure-webpack-plugin": "^2.5.0",
"concurrently": "^6.2.0",
"copy-webpack-plugin": "^6.4.0",
"cross-env": "^7.0.3",
"css-loader": "^5.2.4",
"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.2.0",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^4.4.1",
"jest": "^26.1.0",
"mini-css-extract-plugin": "^0.11.0",
"node-fetch": "^2.6.1",
"prettier": "^2.2.1",
"regenerator-runtime": "^0.13.7",
"sass-loader": "^10.0.1",
"style-loader": "^1.2.1",
"supertest": "^6.0.1",
"webpack": "^4.39.2",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
},
"_moduleAliases": {
"@routers": "./backend/routers",
"@controllers": "./backend/controllers",
"@models": "./backend/models",
"@utils": "./backend/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"
]
}