-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.11 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
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
{
"name": "flight-logger-reboot",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"start": "vite-node app/server.ts",
"dev": "concurrently 'npm run dev:server' 'npm run dev:client'",
"dev:server": "nodemon --watch app --watch routes --exec 'npm start'",
"dev:client": "vite",
"build": "rm -rf public && vite build --outDir public",
"test": "vitest",
"test:watch": "vitest --watch",
"coverage": "vitest --coverage",
"preview": "vite preview",
"format": "prettier --config ./.prettierrc -w app routes resources vite.config.ts"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"daisyui": "^2.24.0",
"debug": "~2.6.9",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"morgan": "~1.9.1",
"pg": "^8.8.0",
"pg-hstore": "^2.3.4",
"react": "^18.2.0",
"react-daisyui": "^2.3.2",
"react-dom": "^18.2.0",
"react-router-dom": "^6.3.0",
"sequelize": "^6.21.4",
"sqlite3": "^5.0.11"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.7",
"@testing-library/react": "^13.3.0",
"@types/cookie-parser": "^1.4.3",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/http-errors": "^1.8.2",
"@types/morgan": "^1.9.3",
"@types/node": "^18.7.14",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"@vitejs/plugin-react": "^2.0.1",
"@vitest/coverage-c8": "^0.22.1",
"autoprefixer": "^10.4.8",
"concurrently": "^7.3.0",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.31.2",
"jsdom": "^20.0.0",
"nodemon": "^2.0.19",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"tailwindcss": "^3.1.8",
"ts-node": "^10.9.1",
"typescript": "^4.8.2",
"vite": "^3.0.7",
"vite-node": "^0.22.1",
"vitest": "^0.22.1"
}
}