generated from BloomTech-Labs/template-be
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
57 lines (57 loc) · 1.46 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
{
"name": "groa-be",
"version": "1.0.0",
"description": "Lambda Labs Groa",
"apidoc": {
"title": "Groa Web API Documentation",
"url": "https://api.groa.us/docs"
},
"main": "index.js",
"scripts": {
"test": "cross-env DB_ENV=testing jest --watch --verbose --runInBand --collect-coverage",
"start": "node index.js",
"server": "nodemon index.js",
"docs": "apidoc -i ./ -e node_modules -o ./docs"
},
"jest": {
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lambda-School-Labs/Groa-be.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Lambda-School-Labs/Groa-be/issues"
},
"homepage": "https://github.com/Lambda-School-Labs/Groa-be#readme",
"dependencies": {
"@okta/jwt-verifier": "^1.0.0",
"@okta/okta-sdk-nodejs": "^3.2.0",
"apidoc": "^0.20.1",
"axios": "^0.19.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"csv-parser": "^2.3.2",
"dotenv": "^6.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.1.6",
"fs": "0.0.1-security",
"helmet": "^3.21.3",
"knex": "^0.20.11",
"knex-cleaner": "^1.3.0",
"pg": "^7.18.2",
"pg-format": "^1.0.4",
"standard": "^14.3.3",
"unzipper": "^0.10.10"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"cross-env": "^7.0.2",
"jest": "^25.1.0",
"nodemon": "^2.0.2",
"supertest": "^4.0.2"
}
}