-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.87 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
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "bookkeeper",
"version": "0.8.0",
"main": "src/server/BookkeeperServer.ts",
"description": "Kukkaro - a web tool for tracking your income and expenses.",
"private": true,
"scripts": {
"postinstall": "bun run install-sharp && bun run update-revisions",
"install-sharp": "cd node_modules/sharp && bun install",
"create-dev-db": "docker run -e POSTGRES_PASSWORD=postgres -p 15488:5432 --name bookkeeper-db -d postgres:14.3",
"ui": "bun run update-revision client && vite",
"server": "bun run update-revision server && bun run migrate && bun run --watch src/server/BookkeeperServer.ts | bun pretty-log",
"build-client": "vite build",
"build-server": "NODE_ENV=production bun run src/build-server.ts",
"update-revision": "bash script/update-revision.sh",
"update-revisions": "bun run update-revision server && bun run update-revision client",
"pretty-log": "bun pino-pretty --config .pino-prettyrc.js",
"lint": "bun lint-eslint && bun lint-tsc",
"lint-eslint": "eslint src",
"lint-tsc": "tsc --noEmit",
"format": "eslint --fix src",
"deploy": "sh script/deploy.sh",
"clean": "rm -rf build/ dist/ build-server/",
"start-server": "./script/start-server.sh",
"stop-server": "./script/stop-server.sh",
"ps-server": "ps -ef | grep BookkeeperServer | grep -v grep | awk '{ print $2; }'",
"migrate": "knex migrate:latest",
"migrate-make": "knex migrate:make",
"rollback": "knex migrate:rollback",
"seed": "knex seed:run",
"example-data": "bun run src/tools/addExampleData.ts",
"find-cyclic": "bunx madge --extensions ts,tsx --circular ."
},
"repository": {
"type": "git",
"url": "git@github.com:thaapasa/bookkeeper.git"
},
"author": "Anu & Tuukka Haapasalo",
"license": "ISC",
"homepage": "https://kukkaro.pomeranssi.fi",
"dependencies": {
"@emotion/react": "11.11.3",
"@emotion/styled": "11.11.0",
"@mui/icons-material": "5.15.11",
"@mui/material": "5.15.11",
"@mui/system": "5.15.11",
"@mui/x-date-pickers": "6.19.5",
"@types/node-fetch": "2.6.11",
"baconjs": "3.0.17",
"big.js": "6.2.1",
"body-parser": "1.20.2",
"dayjs": "1.11.10",
"dotenv": "16.3.1",
"express": "4.18.2",
"history": "5.3.0",
"nocache": "4.0.0",
"node-fetch": "2.7.0",
"parse-multipart-data": "1.5.0",
"path": "0.12.7",
"pg": "8.11.3",
"pg-promise": "11.5.4",
"pino": "8.19.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router": "6.22.1",
"react-router-dom": "6.22.1",
"recharts": "2.12.1",
"sharp": "0.33.2",
"zod": "3.22.4",
"zustand": "4.5.1"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "7.21.11",
"@types/big.js": "6.2.2",
"@types/body-parser": "1.19.5",
"@types/express": "4.17.21",
"@types/react": "18.2.58",
"@types/react-dom": "18.2.19",
"@types/react-router": "5.1.20",
"@types/react-router-dom": "5.3.3",
"@typescript-eslint/eslint-plugin": "7.0.2",
"@typescript-eslint/parser": "7.0.2",
"@vitejs/plugin-react-swc": "3.6.0",
"bun-types": "1.0.29",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "12.0.0",
"eslint-plugin-unused-imports": "3.1.0",
"knex": "2.5.1",
"pino-pretty": "10.3.1",
"prettier": "3.2.5",
"tslib": "2.6.2",
"typescript": "5.3.3",
"vite": "5.1.4",
"vite-tsconfig-paths": "4.3.1"
},
"resolutions": {
"nth-check": "2.1.1",
"react": "18.2.0"
},
"trustedDependencies": [
"sharp"
],
"browserslist": {
"production": [">0.2%", "not dead", "not op_mini all"],
"development": ["last 1 chrome version", "last 1 firefox version", "last 1 safari version"]
}
}