-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
{
"name": "sqlcaster",
"version": "1.0.1",
"description": "Explore Farcaster data with SQL interface via ROAPI",
"author": "Charlie Harrington",
"homepage": "https://sqlcaster.xyz/",
"repository": {
"type": "git",
"url": "git+https://github.com/whatrocks/sqlcaster.git"
},
"dependencies": {
"@codemirror/commands": "^6.1.2",
"@codemirror/lang-sql": "^6.3.1",
"@codemirror/state": "^6.1.2",
"@codemirror/view": "^6.3.1",
"codemirror": "^6.0.1",
"next": "12.2.3",
"react": "^18",
"react-dom": "^18",
"react-is": "^17.0.2"
},
"devDependencies": {
"@types/react": "^18",
"@types/node": "^18.8.5",
"bun-framework-next": "^12",
"typescript": "latest",
"react-refresh": "0.10.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "2.7.1",
"replace-in-file": "^6.3.5",
"eslint": "^8.25.0",
"eslint-config-next": "^12.3.1",
"eslint-config-prettier": "^8.5.0"
},
"module": "index.js",
"scripts": {
"prepare": "husky install",
"export": "next build && next export && npm run replaceFilePaths",
"replaceFilePaths": "node scripts/replacer.ts"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}