-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.31 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.31 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
{
"name": "@cartridge/controller-example-next",
"private": true,
"version": "0.13.3",
"scripts": {
"dev": "env-cmd -f .env.dev next dev -p 3002",
"dev:live": "env-cmd -f .env.live next dev -p 3002",
"build": "next build",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui",
"start": "next start -p 3002",
"lint": "next lint",
"format": "prettier --write ./src",
"format:check": "prettier --check ./src",
"preview": "next start -p 3002"
},
"dependencies": {
"@cartridge/connector": "workspace:*",
"@cartridge/controller": "workspace:*",
"@cartridge/ui": "catalog:",
"@starknet-react/chains": "catalog:",
"@starknet-react/core": "^5.0.1",
"next": "15.3.6",
"next-themes": "^0.3.0",
"prettier": "catalog:",
"react": "catalog:",
"react-dom": "catalog:",
"starknet": "^8.5.4"
},
"devDependencies": {
"@cartridge/eslint": "workspace:*",
"@cartridge/tsconfig": "workspace:*",
"@playwright/test": "^1.46.0",
"@types/node": "catalog:",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"autoprefixer": "catalog:",
"eslint": "catalog:",
"eslint-config-next": "^15.1.5",
"postcss": "catalog:",
"postcss-import": "catalog:",
"tailwindcss": "catalog:",
"typescript": "catalog:"
}
}