-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 856 Bytes
/
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
{
"name": "@example/basics",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev --host",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"deploy": "./scripts/deploy.sh",
"test": "jest",
"test-playwright": "npx playwright test"
},
"dependencies": {
"@astrojs/node": "^8.3.4",
"@emailjs/browser": "^3.10.0",
"@sendgrid/mail": "^8.1.0",
"astro": "^4.16.3",
"dotenv": "^16.0.3",
"postgres": "^3.3.3",
"sha.js": "^2.4.11",
"stripe": "^11.6.0",
"sweetalert2": "^11.7.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@playwright/test": "^1.29.0",
"@types/jest": "^29.2.5",
"@types/sha.js": "^2.4.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typed-emitter": "^2.1.0"
}
}