-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.97 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.97 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
{
"name": "shopify-headless",
"version": "0.1.0",
"private": true,
"type": "module",
"browserslist": [
"last 1 Chrome version",
"last 1 Safari version",
"last 1 Firefox version",
"last 1 Edge version"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"test:e2e": "start-server-and-test dev http://localhost:3000 cypress:headless",
"test:e2e:ci": "start-server-and-test start http://localhost:3000 cypress:headless",
"playwright": "dotenv -e .env.local -- playwright test",
"playwright:ui": "dotenv -e .env.local -- playwright test --ui",
"playwright:debug": "dotenv -e .env.local -- playwright test --debug",
"playwright:report": "playwright show-report",
"playwright:list": "dotenv -e .env.local -- playwright test --list",
"prepare": "husky install"
},
"dependencies": {
"@stripe/react-stripe-js": "^2.4.0",
"@stripe/stripe-js": "^3.0.0",
"critters": "^0.0.23",
"dotenv": "^17.2.3",
"framer-motion": "^11.0.0",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"lucide-react": "^0.344.0",
"next": "^14.2.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"stripe": "^14.0.0"
},
"devDependencies": {
"@cypress/webpack-dev-server": "^5.1.3",
"@playwright/test": "^1.58.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"start-server-and-test": "^2.1.2",
"typescript": "^5",
"husky": "^8.0.0"
}
}