-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.33 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "StampCraft",
"version": "0.2.6",
"private": true,
"license": "MIT",
"scripts": {
"dev": "node ./scripts/dev-script.js",
"dev:starter": "concurrently --kill-others \"next dev\" \"frames\"",
"dev:monorepo": "next dev",
"build": "next build",
"start": "next start",
"clean": "rimraf node_modules",
"format": "prettier --write 'app/**/*.{ts,tsx,json,md}'",
"format:fix": "prettier --write 'app/**/*.{ts,tsx,json,md}'",
"format:check": "prettier --check 'app/**/*.{ts,tsx,js,jsx,json,css}'",
"lint": "next lint",
"lint:fix": "next lint --fix",
"lint:text": "npx textlint ./README.md",
"lint-staged": "lint-staged",
"prepare": "husky",
"test": "jest",
"test:coverage": "jest --coverage --verbose",
"test:watch": "jest --watch --verbose",
"update-debugger": "npx degit github:framesjs/frames.js/examples/framesjs-starter/app/debug#main app/debug --force",
"update-framesjs": "yarn upgrade frames.js@latest && yarn run update-debugger"
},
"dependencies": {
"@farcaster/core": "^0.14.3",
"@noble/ed25519": "^2.1.0",
"@vercel/kv": "^1.0.1",
"@xmtp/frames-validator": "^0.5.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"frames.js": "^0.9.3",
"lucide-react": "^0.365.0",
"next": "^14.1.0",
"openai": "^4.33.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sharp": "^0.33.3",
"tailwindcss-animate": "^1.0.7"
},
"engines": {
"node": ">=18.17.0"
},
"devDependencies": {
"@frames.js/debugger": "^0.1.9",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.4",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.24",
"autoprefixer": "^10.0.1",
"concurrently": "^8.2.2",
"dotenv": "^16.4.5",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"postcss": "^8",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"tailwindcss": "^3.4.3",
"textlint": "^14.0.4",
"textlint-rule-no-mixed-zenkaku-and-hankaku-alphabet": "^1.0.1",
"textlint-rule-no-mixed-zenkaku-and-hankaku-number": "^1.0.0",
"textlint-rule-preset-ja-spacing": "^2.2.0",
"textlint-rule-preset-ja-technical-writing": "^10.0.1",
"textlint-rule-spellcheck-tech-word": "^5.0.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}