-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.12 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": "kottster-demo-app",
"version": "1.0.0",
"type": "module",
"private": true,
"sideEffects": false,
"scripts": {
"dev": "kottster dev --port 5480",
"dev:add-data-source": "kottster add-data-source",
"build": "remix vite:build",
"start": "remix-serve ./build/server/index.js",
"start:server": "node ./server.js",
"prettier": "npx prettier ./app --write"
},
"dependencies": {
"@hotjar/browser": "^1.0.9",
"@kottster/cli": "^2.5.7",
"@kottster/common": "^1.6.1",
"@kottster/react": "^1.5.1",
"@kottster/server": "^1.6.1",
"@remix-run/node": "^2.x",
"@remix-run/react": "^2.x",
"@remix-run/serve": "^2.x",
"apicache": "^1.6.3",
"isbot": "^4.x",
"knex": "^3.1.0",
"pg": "^8.13.1",
"react": "^18.x",
"react-dom": "^18.x"
},
"devDependencies": {
"@originjs/vite-plugin-commonjs": "^1.x",
"@remix-run/dev": "^2.x",
"autoprefixer": "^10.x",
"esbuild": "0.23.1",
"postcss": "^8.x",
"prettier": "3.4.2",
"tailwindcss": "^3.x",
"vite": "^5.x",
"vite-tsconfig-paths": "^4.x"
},
"engines": {
"node": ">=20"
}
}