-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.05 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "mld-node-mgdb",
"version": "1.0.0",
"description": "Node server for My Local Deli",
"main": "server.js",
"scripts": {
"start": "node server",
"server": "nodemon --inspect server",
"client": "npm start --prefix client",
"test": "node --experimental-vm-modules ./node_modules/.bin/jest"
},
"type": "module",
"author": "Kez Anwar",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-s3": "^3.200.0",
"apple-signin-auth": "^2.0.0",
"axios": "^1.1.2",
"bcryptjs": "^2.4.3",
"chalk": "^5.3.0",
"cors": "^2.8.5",
"date-fns": "^2.30.0",
"dotenv": "^16.0.3",
"ejs": "^3.1.9",
"expo-server-sdk": "^3.10.0",
"express": "^4.17.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^6.7.0",
"html-entities": "^2.4.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"memory-cache": "^0.2.0",
"mixpanel": "^0.17.0",
"mongoose": "^8.2.2",
"multer": "^1.4.5-lts.1",
"nanolith": "^0.4.6",
"node-cron": "^3.0.2",
"nodemailer": "^6.8.0",
"redis": "^4.6.13",
"request": "^2.88.2",
"sharp": "^0.33.3",
"stripe": "^16.2.0",
"uuid": "^11.1.0",
"yup": "^1.0.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/jest": "^29.5.0",
"@types/mongoose": "^5.11.97",
"@types/nodemailer": "^6.4.7",
"@types/redis": "^4.0.11",
"concurrently": "^7.0.0",
"eslint": "^8.33.0",
"eslint-plugin-modules": "^1.1.1",
"jest": "^29.5.0",
"nodemon": "^2.0.15"
},
"imports": {
"#app/*.js": "./*.js"
},
"eslintConfig": {
"env": {
"es2022": true,
"node": true
},
"plugins": [
"modules"
],
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module"
},
"rules": {
"no-case-declarations": "off",
"linebreak-style": [
"error",
"unix"
],
"modules/no-cjs": [
"error"
],
"no-undef": [
"error"
],
"semi": [
"error",
"never"
]
}
}
}