forked from bahmutov/cypress-sendgrid-mailosaur-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.09 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.09 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
{
"name": "cypress-sendgrid-mailosaur-example",
"version": "1.0.0",
"description": "Sending and testing email flows example",
"main": "index.js",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "next dev",
"cy:open": "cypress open",
"cy:run": "cypress run",
"local": "start-test 3000 cy:open",
"badges": "npx -p dependency-version-badge update-badge cypress"
},
"keywords": [
"cypress-example"
],
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
"license": "ISC",
"devDependencies": {
"autoprefixer": "10.2.5",
"axios": "^1.3.4",
"cypress": "^13.7.0",
"cypress-data-session": "^2.3.1",
"cypress-log-to-term": "^1.5.2",
"cypress-mailosaur": "^2.13.0",
"postcss": "8.2.13",
"prettier": "2.8.1",
"start-server-and-test": "^2.0.3",
"tailwindcss": "^2.2.19"
},
"dependencies": {
"@sendgrid/client": "^8.1.1",
"@sendgrid/mail": "^8.1.1",
"lowdb": "1.0.0",
"next": "^11.1.4",
"proxiedmail-api": "^1.2.0",
"react": "17.0.2",
"react-dom": "17.0.2"
}
}