-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2 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
{
"name": "route-string-demo",
"version": "1.2.0-beta.0",
"scripts": {
"authenticate": "helium authenticate",
"deploy": "helium deploy",
"dev": "helium dev",
"update-translations": "helium update-translations",
"dev:vite": "concurrently \"npm run dev:css\" \"npm run dev:server\"",
"dev:css": "tailwindcss -o ./renderer/tailwind.css --watch",
"dev:server": "tsup ./server/index.ts && node ./dist/index.js",
"build": "npm run build:css && npm run build:vite",
"build:css": "tailwindcss -o ./renderer/tailwind.css",
"build:vite": "vite build"
},
"publishConfig": {
"access": "public",
"tag": "beta"
},
"dependencies": {
"@apollo/client": "^3.7.0",
"@cloudflare/kv-asset-handler": "^0.2.0",
"@graphql-tools/graphql-tag-pluck": "^7.1.3",
"@mdx-js/rollup": "^2.1.3",
"@tailwindcss/line-clamp": "^0.3.1",
"@thoughtindustries/cart": "^1.2.0-beta.0",
"@thoughtindustries/catalog": "^1.2.0-beta.0",
"@thoughtindustries/content": "^1.2.0-beta.0",
"@thoughtindustries/featured-content": "^1.3.0-beta.0",
"@thoughtindustries/helium-server": "^2.0.0",
"@thoughtindustries/hero": "^1.1.0-beta.0",
"@thoughtindustries/navigation-bar": "^1.2.0-beta.0",
"clsx": "^1.2.1",
"concurrently": "^7.0.0",
"cross-env": "^7.0.3",
"graphql": "^16.6.0",
"i18next": "^21.10.0",
"jwt-decode": "^3.1.2",
"node-html-parser": "^4.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^11.18.6",
"remark-frontmatter": "^4.0.1",
"remark-mdx-frontmatter": "^2.0.3",
"tailwindcss": "^3.0.9",
"vite": "^3.1.8",
"vite-plugin-ssr": "^0.4.43"
},
"devDependencies": {
"@thoughtindustries/helium": "^1.2.0-beta.0",
"@types/node": "^17.0.23",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"tsup": "^6.2.1",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=16.18.1",
"npm": ">=8.19.2"
},
"volta": {
"node": "16.18.1",
"npm": "8.19.2"
}
}