-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.08 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
{
"name": "college-resources-web",
"version": "0.1.0",
"description": "College Resources website",
"scripts": {
"lint": "npx eslint .",
"fix": "npm run prettier && npm run eslint:fix",
"dev": "node bin/www --dev",
"build": "next build",
"start": "node bin/www",
"deps": "npm-check -u",
"debug": "node --inspect bin/www --dev",
"eslint:fix": "npx eslint . --fix",
"prettier": "npx prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/college-resources/web.git"
},
"author": "College Resources",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/college-resources/web/issues"
},
"homepage": "https://github.com/college-resources/web#readme",
"dependencies": {
"@google-cloud/connect-firestore": "^2.0.1",
"@google-cloud/firestore": "^4.9.8",
"@next/bundle-analyzer": "^10.1.3",
"auth0": "^2.34.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-request-proxy": "^2.2.2",
"express-session": "^1.17.1",
"express-validator": "^6.10.0",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^1.12.0",
"lodash": "^4.17.21",
"next": "^10.1.3",
"next-pwa": "^3.1.5",
"passport": "^0.4.1",
"passport-auth0": "^1.4.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/eslint-parser": "^7.13.14",
"@babel/eslint-plugin": "^7.13.10",
"@material-ui/core": "^4.11.3-deprecations.1",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.56",
"@material-ui/styles": "^4.11.3",
"@reduxjs/toolkit": "^1.5.1",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"markdown-to-jsx": "^7.1.2",
"next-redux-wrapper": "^6.0.2",
"npm-check": "^5.9.2",
"prettier": "^2.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.3",
"redux": "^4.0.5"
}
}