-
Notifications
You must be signed in to change notification settings - Fork 116
/
package.json
113 lines (113 loc) · 3.71 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
113
{
"private": true,
"license": "MPL-2.0",
"scripts": {
"start": "npm-run-all -p start:client start:server",
"start:client": "cross-env NODE_ENV=development vite build --watch",
"start:server": "nodemon --watch src/server --ext 'ts,tsx' --exec 'ts-node src/server'",
"build": "npm-run-all -s build:tsc build:vite",
"build:tsc": "tsc",
"build:vite": "cross-env NODE_ENV=development vite build",
"format": "npm-run-all -s format:*",
"format:prettier": "prettier --write './**/*.{ts,tsx,js,jsx,json}'",
"format:eslint": "eslint ./ --fix --ext .js,.jsx,.ts,.tsx",
"format:stylelint": "stylelint --ignore-path .gitignore --fix './**/styles.{js,ts}' './**/*.styles.{js,ts}' './**/*.css'",
"seed": "npm-run-all -s clear:database seed:database",
"seed:database": "cross-env SEED_BASE_UNIXTIME=1677855600 ts-node tools/seed.ts",
"clear:database": "rm -f ./databases/database.sqlite"
},
"dependencies": {
"@apollo/client": "3.8.0-alpha.7",
"@apollo/server": "4.3.0",
"@as-integrations/koa": "0.2.1",
"@emotion/css": "11.10.5",
"@js-temporal/polyfill": "0.4.3",
"@koa/router": "12.0.0",
"@types/koa-session": "5.10.6",
"bcrypt": "5.1.0",
"canvaskit-wasm": "0.38.0",
"classnames": "2.3.2",
"core-js": "3.29.0",
"currency-formatter": "1.5.9",
"date-time-format-timezone": "1.0.22",
"formik": "2.2.9",
"graphql": "16.6.0",
"http-graceful-shutdown": "3.1.13",
"koa": "2.14.1",
"koa-bodyparser": "4.3.0",
"koa-logger": "3.2.1",
"koa-route": "3.2.0",
"koa-send": "5.0.1",
"koa-session": "6.4.0",
"koa-static": "5.0.0",
"lodash": "4.17.21",
"modern-css-reset": "1.4.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "3.1.4",
"react-helmet": "6.1.0",
"react-icons": "4.7.1",
"react-is": "18.2.0",
"react-overlays": "5.2.1",
"react-router-dom": "6.4.5",
"recoil": "0.7.6",
"reflect-metadata": "0.1.13",
"setimmediate": "1.0.5",
"sqlite3": "5.1.4",
"styled-components": "5.3.6",
"throttle-debounce": "5.0.0",
"typeorm": "0.3.11",
"zipcode-ja": "0.0.7",
"zod": "3.20.6"
},
"devDependencies": {
"@babel/core": "7.20.5",
"@types/bcrypt": "5.0.0",
"@types/currency-formatter": "1.5.1",
"@types/koa": "2.13.5",
"@types/koa-bodyparser": "4.3.10",
"@types/koa-logger": "3.1.2",
"@types/koa-route": "3.2.5",
"@types/koa-send": "4.1.3",
"@types/koa-static": "4.0.2",
"@types/lodash": "4.14.191",
"@types/node": "18.11.15",
"@types/react": "18.0.24",
"@types/react-dom": "18.0.8",
"@types/react-helmet": "6.1.6",
"@types/throttle-debounce": "5.0.0",
"@typescript-eslint/eslint-plugin": "5.45.0",
"@typescript-eslint/parser": "5.45.0",
"@vitejs/plugin-react": "3.1.0",
"cross-env": "7.0.3",
"csstype": "3.1.1",
"eslint": "8.29.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "3.5.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-sort": "2.4.0",
"nodemon": "2.0.20",
"npm-run-all": "4.1.5",
"postcss": "8.4.21",
"postcss-styled-syntax": "0.3.1",
"prettier": "2.8.0",
"prettier-plugin-packagejson": "2.4.3",
"prettier-plugin-sort-json": "1.0.0",
"stylelint": "15.1.0",
"stylelint-config-recommended": "10.0.1",
"stylelint-order": "6.0.2",
"ts-node": "10.9.1",
"typescript": "4.9.3",
"vite": "4.1.4",
"vite-plugin-ejs": "1.6.4",
"vite-plugin-top-level-await": "1.2.4",
"vite-plugin-wasm": "3.2.1"
},
"packageManager": "pnpm@7.24.3",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=7.24.3"
}
}