-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.49 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
{
"name": "journal-policy-tracker-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "yarn build && node dist/index.js",
"dev": "nodemon --exec babel-node src/index.js",
"build": "babel src -s -d dist",
"test": "jest --config jest.config.json ./test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/d-e-v-esh/journal-policy-tracker-backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/d-e-v-esh/journal-policy-tracker-backend/issues"
},
"homepage": "https://github.com/d-e-v-esh/journal-policy-tracker-backend#readme",
"dependencies": {
"@graphql-tools/merge": "^8.2.14",
"@graphql-tools/schema": "^8.5.0",
"apollo-server-express": "^3.8.2",
"bcrypt": "^5.0.1",
"connect-redis": "^6.1.3",
"cors": "^2.8.5",
"dayjs": "^1.11.7",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-session": "^1.17.3",
"googleapis": "^109.0.1",
"graphql": "^16.5.0",
"graphql-middleware": "^6.1.31",
"graphql-shield": "^7.5.0",
"ioredis": "^5.1.0",
"mongoose": "^6.3.6",
"nodemailer": "^6.8.0",
"uuid": "^9.0.0",
"validator": "^13.7.0"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.2",
"@babel/node": "^7.17.10",
"@babel/preset-env": "^7.18.2",
"@faker-js/faker": "^7.3.0",
"@types/jest": "^29.0.0",
"jest": "^29.0.1",
"nodemon": "^2.0.16"
}
}