-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.26 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.26 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
{
"name": "good-robot-co",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "mkdir -p logs && : > logs/dev.log && next dev 2>&1 | tee logs/dev.log",
"url": "grep -m1 'http://localhost' logs/dev.log || echo 'Dev server not running. Run: npm run dev'",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test:smoke": "node tests/smoke-tests.js",
"test:sanity": "node tests/sanity-integration.js",
"test:build": "node tests/build/sanity-build-validation.js",
"test:all": "npm run test:smoke && npm run test:sanity && npm run build && npm run test:build"
},
"dependencies": {
"@portabletext/react": "^6.0.2",
"@sanity/client": "^7.14.0",
"@sanity/icons": "^3.7.4",
"@sanity/image-url": "^1.2.0",
"@sanity/vision": "^4.22.0",
"@vercel/analytics": "^1.6.1",
"@vercel/speed-insights": "^1.3.1",
"next": "^15.1.0",
"next-sanity": "^11.6.12",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sanity": "^4.22.0"
},
"devDependencies": {
"@sanity/cli": "^5.2.0",
"@types/node": "^20.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.5",
"typescript": "^5.0.0"
}
}