forked from BloomTech-Labs/My-School-BE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.56 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
{
"name": "my-school-be-",
"version": "1.0.0",
"description": "🚫 Note: All lines that start with 🚫 are instructions and should be deleted before this is posted to your portfolio. This is intended to be a guideline. Feel free to add your own flare to it.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"server": "nodemon",
"test": "cross-env DB_ENV=testing jest --watch --i",
"coverage": "cross-env DB_ENV=testing jest --coverage --detectOpenHandles --forceExit || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lambda-School-Labs/My-School-BE-.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Lambda-School-Labs/My-School-BE-/issues"
},
"homepage": "https://github.com/Lambda-School-Labs/My-School-BE-#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cloudinary": "^1.21.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.1.7-alpha.3",
"git-secrets": "0.0.11",
"helmet": "^3.22.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.1",
"pg": "^8.2.0",
"sqlite3": "^4.2.0"
},
"devDependencies": {
"cross-env": "^7.0.2",
"jest": "^26.0.1",
"nodemon": "^2.0.4",
"supertest": "^4.0.2"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/node_modules/**",
"!**/vendor/**",
"!**/database/**",
"!**/tests/**",
"!**/spec/**",
"!**/*.spec.{js,jsx}",
"!**/coverage/**"
]
}
}