-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.62 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": "college-resources-api",
"version": "0.1.0",
"description": "College Resources API Server",
"main": "server.js",
"scripts": {
"dev": "npm run development",
"development": "cross-env NODE_ENV=development node .",
"watch": "cross-env NODE_ENV=development nodemon .",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production node .",
"lint": "eslint .",
"fix": "prettier --write . && eslint --fix .",
"test": "jest",
"test:watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/college-resources/api.git"
},
"author": "College Resources",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://gitlab.com/college-resources/api/issues"
},
"homepage": "https://gitlab.com/college-resources/api#readme",
"devDependencies": {
"@shelf/jest-mongodb": "^1.2.3",
"apollo-server-express": "^2.19.0",
"auth0": "^2.30.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"dataloader": "^2.0.0",
"dotenv": "^8.2.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.1.0",
"express": "^4.17.1",
"express-bearer-token": "^2.4.0",
"graphql-import": "^0.7.1",
"helmet": "^4.2.0",
"jest": "^26.6.3",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^1.11.0",
"mongoose": "^5.10.12",
"morgan": "^1.10.0",
"nodemon": "^2.0.6",
"npm-check-updates": "^9.2.4",
"open-graph-scraper": "^4.7.0",
"prettier": "^2.1.2",
"terser-webpack-plugin": "^5.0.3"
}
}