generated from BloomTech-Labs/template-be
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.56 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.56 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
{
"name": "phoenix-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": {
"coverage": "cross-env NODE_ENV=testing jest --coverage --watchAll=false --detectOpenHandles --forceExit || true",
"test": "cross-env NODE_ENV=testing jest --watch --runInBand --detectOpenHandles",
"start": "node index.js",
"server": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lambda-School-Labs/phoenix-be.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Lambda-School-Labs/phoenix-be/issues"
},
"homepage": "https://github.com/Lambda-School-Labs/phoenix-be#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"knex": "^0.20.10",
"pg": "^7.18.2"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"./*.js",
"./routes/*/*.js",
"**/*.{js}",
"!**node_modules/**",
"!**/vendor/**",
"!**/test/**",
"!**/coverage/**",
"!**/database/migrations/**",
"!**/database/seeds/**",
"!**/models/all-user-data.js",
"!**/config/**",
"!**/index.js"
]
},
"devDependencies": {
"cross-env": "^7.0.2",
"jest": "^25.4.0",
"nodemon": "^2.0.2",
"supertest": "^4.0.2"
}
}