-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.4 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
{
"name": "back-end",
"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": {
"test": "cross-env DB_ENV=staging jest --watch --verbose",
"server": "nodemon index.js",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sauti-databank/back-end.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sauti-databank/back-end/issues"
},
"homepage": "https://github.com/sauti-databank/back-end#readme",
"dependencies": {
"apollo-server": "^2.10.1",
"apollo-server-express": "^2.10.1",
"axios": "^0.19.2",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"cron": "^1.8.2",
"cross-env": "^5.2.0",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"graphql": "^14.5.8",
"graphql-tools": "^4.0.6",
"helmet": "^3.18.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.19.5",
"morgan": "^1.9.1",
"mysql": "^2.17.1",
"nodemailer": "^6.4.6",
"php-unserialize": "^0.0.1",
"qs": "^6.9.1"
},
"devDependencies": {
"jest": "^24.8.0",
"nodemon": "^2.0.2",
"supertest": "^4.0.2"
},
"jest": {
"testEnvironment": "node"
}
}