-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.8 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
{
"name": "quote-api",
"version": "1.0.0",
"description": "serve quotes from mongodb atlas db",
"main": "startup.js",
"author": "aaron.wolbach@gmail.com",
"license": "ISC",
"scripts": {
"start": "node startup.js prod",
"dev": "nodemon startup.js dev",
"local": "nodemon startup.js local",
"build-spec": "node ./server/scripts/build-spec.js",
"test": "jest --runInBand --detectOpenHandles --unhandled-rejections=strict --forceExit",
"database": "docker run --rm -d -p 27017:27017 --name=\"local-mongodb\" mongo",
"create-quote": "node ./server/scripts/create-quote.js",
"load-db": "node ./server/scripts/load-db.js",
"tfidf-index": "node ./server/scripts/tfidf-indexer.js",
"search-quotes": "node ./server/scripts/search-quotes.js"
},
"repository": {
"type": "git",
"url": "https://github.com/grugknuckle/famous-quotes-api.git"
},
"dependencies": {
"auth0": "^2.35.1",
"axios": "^0.21.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"express-jwt-authz": "^2.4.1",
"express-openid-connect": "^2.4.0",
"express-winston": "^4.1.0",
"helmet": "^4.6.0",
"jsonschema": "^1.4.0",
"jwks-rsa": "^2.0.3",
"mongoose": "^6.0.7",
"mongoose-paginate-v2": "^1.3.18",
"natural": "^5.1.1",
"serve-static": "^1.14.1",
"stopword": "^1.0.11",
"winston": "^3.3.3"
},
"engines": {
"node": "^14.17.0",
"npm": "^6.14.13"
},
"devDependencies": {
"cypress": "^7.4.0",
"dotenv": "^8.6.0",
"jest": "^27.0.1",
"jest-express": "^1.12.0",
"jsdoc-to-markdown": "^7.0.1",
"json-to-pretty-yaml": "^1.2.2",
"jsonfile": "^6.1.0",
"nodemon": "^2.0.7",
"standard": "^16.0.4",
"superagent": "^6.1.0",
"superagent-proxy": "^3.0.0",
"supertest": "^6.1.3"
}
}