-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.1 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
{
"name": "bolt-backend",
"version": "1.0.0",
"description": "Bolt's Backend",
"main": "server.js",
"scripts": {
"start": "nodemon server.js",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BOLT-BootCamps/BOLT-Backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/BOLT-BootCamps/BOLT-Backend/issues"
},
"homepage": "https://github.com/BOLT-BootCamps/BOLT-Backend#readme",
"dependencies": {
"axios": "^0.26.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"graphql": "^15.5.1",
"graphql-date": "^1.0.3",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^2.0.4",
"morgan": "^1.10.0",
"mssql": "^8.0.2",
"nodemon": "^2.0.12",
"pg": "^8.7.1",
"pg-promise": "^10.11.0"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"mocha": "^9.1.2"
}
}