-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1 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
{
"name": "exporterjs",
"version": "0.1.0",
"private": true,
"scripts": {
"start:dev": "ts-node-dev --files --respawn -r dotenv/config --ignore-watch .next server.ts",
"dev": "next dev",
"build": "next build && tsc --project tsconfig.server.json",
"start": "node ./dist/server.js",
"lint": "next lint"
},
"dependencies": {
"@koa/router": "^13.1.0",
"http-graceful-shutdown": "^3.1.13",
"koa": "^2.15.3",
"mysql": "^2.18.1",
"mysql2": "^3.11.3",
"next": "14.2.13",
"prom-client": "^15.1.3",
"react": "^18",
"react-dom": "^18",
"reflect-metadata": "^0.2.2",
"typedi": "^0.10.0",
"typeorm": "^0.3.20"
},
"devDependencies": {
"@types/koa": "^2.15.0",
"@types/koa__router": "^12.0.4",
"@types/node": "^20.16.7",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.13",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5"
}
}