generated from BloomTech-Labs/template-be
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
84 lines (84 loc) · 1.88 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
{
"name": "build-blitz-be",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"server": "nodemon index.js",
"start": "node index.js",
"test": "mocha --exit",
"generate-docs": "jsdoc -c ./package.json",
"build": "npm run start "
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lambda-School-Labs/blitz-build-be.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Lambda-School-Labs/blitz-build-be/issues"
},
"homepage": "https://github.com/Lambda-School-Labs/blitz-build-be#readme",
"dependencies": {
"@now/node": "^1.3.5",
"aws-sdk": "^2.582.0",
"axios": "^0.19.0",
"bcryptjs": "^2.4.3",
"chai": "^4.2.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"express-session": "^1.17.0",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^1.6.0",
"knex": "^0.20.1",
"knex-cleaner": "^1.3.0",
"mocha": "^6.2.2",
"mockery": "^2.1.0",
"moment": "^2.24.0",
"node-static": "^0.7.11",
"now": "^16.7.3",
"passport": "^0.4.0",
"passport-auth0": "^1.3.0",
"pg": "^7.12.1",
"zipcodes": "^8.0.0"
},
"devDependencies": {
"clean-css-cli": "^4.3.0",
"concat": "^1.0.3",
"eslint": "^6.7.2",
"imagemin-cli": "^5.1.0",
"jest": "^24.9.0",
"node-sass": "^4.13.1",
"nodemon": "^1.19.4",
"supertest": "^4.0.2",
"uglify-js": "^3.7.6"
},
"engines": {
"node": "12.13.0",
"npm": "6.10.3"
},
"source": {
"includePattern": ".+\\.js(doc|x)?$",
"include": [
".",
"README.md"
],
"exclude": [
"node_modules",
".env"
],
"plugins": [
"plugins/markdown"
]
},
"recurseDepth": 10,
"opts": {
"destination": "./public/jsdocs",
"recurse": true
}
}