-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
40 lines (40 loc) · 1.1 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
{
"name": "@wix/app-template-custom-shipping-rates",
"version": "0.1.0",
"private": true,
"scripts": {
"e2e": "npx playwright test",
"e2e:update": "npx playwright test --update-snapshots",
"test": "npm run e2e",
"all": "npm run lint && npm run build && npm run test",
"dev": "next dev --experimental-https",
"build": "next build",
"start": "next start",
"lint": "next lint --fix"
},
"dependencies": {
"@tanstack/react-query": "^5.17.19",
"@wix/dashboard": "^1.3.7",
"@wix/design-system": "^1.85.0",
"@wix/ecom": "^1.0.603",
"@wix/sdk": "^1.10.2",
"@wix/wix-ui-icons-common": "^3.16.0",
"jsonwebtoken": "^9.0.2",
"next": "14.0.4",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@playwright/test": "^1.42.1",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.3",
"typescript": "^5"
}
}