forked from BloomTech-Labs/startup-grant-database-be
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.36 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
{
"name": "startup-grant-database-be",
"version": "1.0.0",
"description": "The Backend for the Founder Grants app",
"main": "index.js",
"scripts": {
"docs": "npm run docs:generate && npm run docs:markdown",
"docs:generate": "apidoc -i ./controllers -o ./apidoc/",
"docs:markdown": "apidoc-markdown2 -p apidoc -o ./docs/routes.md",
"lint:fix": "eslint . --fix",
"server": "nodemon index.js",
"local-test": "cross-env DB_ENV=testing jest --verbose --watchAll --coverage",
"test": "jest --detectOpenHandles --forceExit",
"coverage": "jest --coverage --detectOpenHandles --forceExit || true",
"start": "node index.js"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/node_modules/**",
"!**/vendor/**",
"!**/__tests__/**",
"!**/data/migrations/**",
"!**/data/seeds/**",
"!**/coverage/**"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lambda-School-Labs/startup-grant-database-be.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Lambda-School-Labs/startup-grant-database-be/issues"
},
"homepage": "https://github.com/Lambda-School-Labs/startup-grant-database-be#readme",
"dependencies": {
"@sendgrid/mail": "^6.5.3",
"axios": "^0.19.2",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"express-jwt-authz": "^2.3.1",
"helmet": "^3.21.0",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^1.6.0",
"knex": "^0.19.5",
"knex-cleaner": "^1.3.0",
"morgan": "^1.9.1",
"pg": "^7.12.1",
"sqlite3": "^4.1.0"
},
"devDependencies": {
"apidoc": "^0.20.0",
"apidoc-markdown2": "^0.3.7",
"babel-eslint": "^9.0.0",
"cross-env": "^5.2.1",
"eslint": "^5.14.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-config-wesbos": "0.0.19",
"eslint-plugin-html": "^5.0.3",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.3.0",
"husky": "^4.2.3",
"jest": "^24.9.0",
"moment": "^2.24.0",
"nodemon": "^1.19.4",
"prettier": "^1.16.4",
"supertest": "^4.0.2"
}
}