-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
57 lines (57 loc) · 1.64 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
56
57
{
"name": "starick",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"format": "prettier . --write '!./data' '!./.next'",
"format:check": "prettier . --check '!./data' '!./.next'",
"test": "dotenv -e .env -- mocha"
},
"dependencies": {
"@stripe/stripe-js": "^3.0.6",
"@types/chai": "^4.3.5",
"next": "^13.5.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-easy-swipe": "^0.0.23",
"react-hook-form": "^7.43.9",
"react-icons": "^5.0.1",
"react-router-dom": "^6.22.3",
"stripe": "^14.18.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@paypal/checkout-server-sdk": "^1.0.3",
"@paypal/react-paypal-js": "^8.1.3",
"@types/mocha": "^10.0.1",
"@types/node": "^20.2.4",
"@types/paypal__checkout-server-sdk": "^1.0.8",
"@types/react": "18.2.7",
"@types/react-dom": "18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"autoprefixer": "^10.4.14",
"chai": "^4.3.7",
"cross-env": "^7.0.3",
"dotenv-cli": "^7.2.1",
"eslint": "8.41.0",
"eslint-config-next": "13.4.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"mocha": "^10.2.0",
"next-test-api-route-handler": "^3.1.8",
"postcss": "^8.4.31",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"tailwindcss": "^3.3.2",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
}
}