-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.25 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
{
"name": "my-pima-api",
"version": "1.0.0",
"description": "API to serve My PIMA app",
"main": "server.mjs",
"scripts": {
"dev": "nodemon server.mjs",
"start": "node server.mjs",
"test": "jest",
"test:esm": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"keywords": [
"PIMA",
"My",
"PIMA",
"technoServe"
],
"author": "@julesntare",
"license": "MIT",
"dependencies": {
"apollo-server-express": "^3.12.0",
"axios": "^1.4.0",
"babel-jest": "^29.5.0",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"cron": "^2.3.1",
"dotenv": "^16.0.3",
"express": "^4.21.0",
"express-session": "^1.17.3",
"google-auth-library": "^8.8.0",
"graphql": "^16.7.1",
"graphql-redis-subscriptions": "^2.6.0",
"graphql-scalars": "^1.22.1",
"graphql-upload": "^16.0.2",
"ioredis": "^5.3.2",
"jsforce": "^1.11.1",
"jsonwebtoken": "^9.0.0",
"nodemailer": "^6.9.5",
"nodemon": "^2.0.22",
"pg": "^8.11.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.31.1",
"util": "^0.12.5"
},
"devDependencies": {
"@apollo/rover": "^0.16.0",
"@babel/core": "^7.22.1",
"@babel/preset-env": "^7.22.4",
"jest": "^29.5.0",
"supertest": "^6.3.3"
}
}