-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.79 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "lumina-data-cloud",
"description": "Lumina Solar - Data Cloud Integration",
"type": "module",
"version": "1.0.0",
"main": "app.js",
"keywords": [
"heroku",
"data cloud",
"postgres"
],
"author": "Heroku DevRel <[email protected]>",
"license": "Apache-2.0",
"directories": {
"test": "test"
},
"scripts": {
"build": "npm run build:client && npm run build:server",
"build:dev": "npm run build:client:dev && npm run build:server:dev",
"build:client": "vite build --outDir dist/client --ssrManifest",
"build:server": "vite build --outDir dist/server --ssr /index.js",
"build:client:dev": "vite build -m dev --outDir dist/client --ssrManifest",
"build:server:dev": "vite build -m dev --outDir dist/server --ssr /index.js",
"test": "node --test test/**/*.test.js",
"start": "node server.js",
"dev": "npm run build:dev && node server.js --dev",
"setup": "node scripts/setup.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --write .",
"prepare": "husky",
"precommit": "lint-staged"
},
"dependencies": {
"@faker-js/faker": "^8.4.1",
"@fastify/auth": "^4.6.1",
"@fastify/autoload": "^5.8.2",
"@fastify/cookie": "^9.3.1",
"@fastify/formbody": "^7.4.0",
"@fastify/postgres": "^5.2.2",
"@fastify/react": "^0.6.0",
"@fastify/sensible": "^5.6.0",
"@fastify/session": "^10.8.0",
"@fastify/swagger": "^8.14.0",
"@fastify/swagger-ui": "^3.0.0",
"@fastify/vite": "^6.0.6",
"@mantine/carousel": "^7.9.2",
"@mantine/core": "^7.9.1",
"@mantine/hooks": "^7.9.1",
"@tabler/icons-react": "^3.3.0",
"@vitejs/plugin-react": "^4.2.1",
"dotenv": "^16.4.5",
"fastify": "^4.27.0",
"fastify-plugin": "^4.5.1",
"history": "^5.3.0",
"minipass": "^7.1.0",
"pg": "^8.11.5",
"pino-pretty": "^11.0.0",
"postcss": "^8.4.38",
"postcss-nesting": "^12.1.2",
"postcss-preset-env": "^9.5.11",
"postcss-preset-mantine": "^1.15.0",
"postcss-simple-vars": "^7.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.13",
"react-router-dom": "^6.23.0",
"react-use": "^17.5.0",
"tailwindcss": "^3.4.3",
"unihead": "0.0.6",
"valtio": "^1.13.2"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"eslint": "^9.2.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"vite": "^5.2.11"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{css,md,json}": [
"prettier --write"
]
},
"engines": {
"node": "20.x",
"npm": "10.x"
},
"volta": {
"node": "20.13.1",
"npm": "10.5.2"
}
}