-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
55 lines (55 loc) · 1.36 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
{
"name": "sendgrid-mock",
"version": "1.12.0",
"description": "SendGrid API mock",
"engines": {
"node": ">=16",
"npm": ">=8"
},
"targets": {
"default": {
"engines": {
"browsers": ">= 50%"
}
}
},
"scripts": {
"lint": "eslint src",
"test": "jest",
"server-dev": "cross-env API_KEY=sendgrid-api-key MAIL_HISTORY_DURATION=PT24H node ./src/server/Server.js",
"ui-dev": "parcel ./src/ui/index.html",
"dev": "concurrently \"npm run server-dev\" \"npm run ui-dev\"",
"build": "parcel build ./src/ui/index.html"
},
"author": "janjaali",
"repository": {
"url": "https://github.com/janjaali/sendGrid-mock",
"type": "git"
},
"license": "MIT",
"dependencies": {
"axios": "^1.7.4",
"body-parser": "^1.20.1",
"express": "^4.21.1",
"express-basic-auth": "^1.2.0",
"express-json-validator-middleware": "^3.0.1",
"express-rate-limit": "^6.7.0",
"log4js": "^6.4.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-table": "^6.9.0",
"sanitize-filename": "^1.6.3"
},
"devDependencies": {
"babel-eslint": "^10.0.2",
"concurrently": "^7.2.2",
"cross-env": "^7.0.3",
"eslint": "^8.0.0",
"eslint-plugin-react": "^7.14.3",
"jest": "^27.0.0",
"parcel": "^2.6.2",
"process": "^0.11.10",
"sinon": "^14.0.0",
"supertest": "^7.0.0"
}
}