This repository was archived by the owner on Dec 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.71 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.71 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
{
"name": "com.anolet.platform",
"version": "1.0.0",
"description": "Anolet API",
"main": "server.js",
"scripts": {
"start": "node server.js",
"startwdoppler": "doppler run -- node server.js",
"dev": "doppler run -- nodemon --inspect server.js",
"test": "doppler run -- jest --testTimeout=10000"
},
"jest": {
"testEnvironment": "node",
"testTimeout": 10000,
"verbose": true,
"rootDir": "./tests",
"setupFilesAfterEnv": [
"./setup.js"
]
},
"engines": {
"node": "17.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CanobalLabs/api.git"
},
"author": "Anolet LLC",
"license": "ISC",
"bugs": {
"url": "https://github.com/CanobalLabs/api/issues"
},
"homepage": "https://github.com/CanobalLabs/api#readme",
"devDependencies": {
"jest": "^29.6.2",
"nodemon": "^2.0.16"
},
"dependencies": {
"@jest/globals": "^29.6.2",
"@sendgrid/mail": "^7.7.0",
"axios": "^1.4.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"canvas": "^2.11.2",
"cors": "^2.8.5",
"cryptr": "^6.0.3",
"data-uri-to-buffer": "^3.0.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-rate-limit": "^6.7.0",
"express-validation": "^4.1.0",
"fs": "^0.0.1-security",
"get-pixels": "^3.3.3",
"jsonwebtoken": "^8.5.1",
"merge-images": "^2.0.0",
"minio": "^7.0.28",
"mkdirp": "^1.0.4",
"mongoose": "^6.7.2",
"multer": "^1.4.5-lts.1",
"node-html-to-image": "^3.2.4",
"path": "^0.12.7",
"rate-limit-redis": "^3.0.2",
"redis": "^4.2.0",
"save-pixels": "^2.3.6",
"sharp": "^0.31.3",
"trim-image": "^1.0.3",
"twilio": "^4.11.1",
"uuid": "^8.3.2"
}
}