generated from BloomTech-Labs/template-be
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.51 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.51 KB
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
{
"name": "gitstats-backend",
"version": "1.0.0",
"description": "backend api for gitstats.dev",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "mocha",
"coverage": "nyc --reporter=clover --reporter=text mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lambda-School-Labs/github-commit-analysis-be.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Lambda-School-Labs/github-commit-analysis-be/issues"
},
"homepage": "https://github.com/Lambda-School-Labs/github-commit-analysis-be#readme",
"devDependencies": {
"chai": "^4.2.0",
"cross-env": "^7.0.0",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.8.0",
"jest": "^25.1.0",
"mocha": "^8.1.0",
"nodemon": "^2.0.2",
"sequelize-test-helpers": "^1.2.3",
"sinon": "^9.0.2",
"supertest": "^4.0.2"
},
"dependencies": {
"apollo-server-express": "^2.11.0",
"axios": "^0.19.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ejs": "^3.0.1",
"express": "^4.17.1",
"express-session": "^1.17.0",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.9.1",
"nyc": "^15.1.0",
"passport": "^0.4.1",
"passport-github": "^1.1.0",
"pg": "^7.18.2",
"pg-hstore": "^2.3.3",
"sequelize": "^5.21.5",
"sequelize-cli": "^5.5.1",
"uuid": "^7.0.2"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}