-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.37 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
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
{
"name": "creative-survival-search-app",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/kvieira90/creative-survival-search-app.git",
"author": "William Forte <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "nodemon src/index.ts",
"build": "tsc -P ./tsconfig.json",
"start": "yarn build && node ./build/src/index.js",
"lint": "eslint ./src/*.ts",
"lint:fix": "eslint --fix ./src/*.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.472.0",
"@mailchimp/mailchimp_transactional": "^1.0.50",
"@types/node-cron": "^3.0.9",
"aws-sdk": "^2.1517.0",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"docusign": "^8.0.4",
"dotenv": "^16.3.1",
"elasticsearch": "^16.7.2",
"express": "^4.17.1",
"express-session": "^1.17.0",
"firebase-admin": "^11.10.1",
"formidable": "^2.0.1",
"jsonwebtoken": "^8.5.1",
"knox-s3": "^0.9.5",
"lodash": "^4.17.21",
"moment": "^2.24.0",
"mongoose": "^5.8.9",
"morgan": "^1.9.1",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"node-cron": "^3.0.3",
"nodemon": "^2.0.2",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^6.0.1",
"password-validator": "^5.3.0",
"path": "^0.12.7",
"short-unique-id": "^4.4.4",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/bcryptjs": "^2.4.5",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.9",
"@types/jsonwebtoken": "^9.0.2",
"@types/lodash": "^4.14.195",
"@types/mailchimp__mailchimp_transactional": "^1.0.8",
"@types/multer": "^1.4.11",
"@types/multer-s3": "^3.0.3",
"@types/node": "^20.4.1",
"@types/passport": "^1.0.12",
"@types/passport-local": "^1.0.35",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.52.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"rimraf": "^5.0.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6"
}
}