-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.69 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
{
"name": "app-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=production tsx index.ts",
"dev:server": "cross-env NODE_ENV=development tsx watch index.ts",
"dev:client": "node esbuild.dev.config.mjs",
"dev": "concurrently \"npm run dev:server --clear-screen=false\" \"npm run dev:client\"",
"build:client": "node esbuild.config.mjs",
"build": "npm run build:client",
"typeorm": "typeorm-ts-node-esm",
"migrations:run": "typeorm-ts-node-esm migration:run -d database/index.ts",
"migrations:rollback": "typeorm-ts-node-esm migration:revert -d database/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@phosphor-icons/react": "^2.0.13",
"axios": "^1.4.0",
"axios-cache-interceptor": "^1.2.0",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.2.0",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"jwt-decode": "^3.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.13.0",
"reflect-metadata": "^0.1.13",
"socket.io": "^4.6.2",
"sqlite3": "^5.1.6",
"typeorm": "^0.3.16",
"typescript": "^5.1.3"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/react": "^18.2.12",
"@types/react-css-modules": "^4.6.4",
"concurrently": "^8.2.0",
"cross-env": "^7.0.3",
"css-tree": "^2.3.1",
"esbuild": "^0.17.19",
"esbuild-sass-plugin": "^2.9.0",
"eslint": "^8.42.0",
"postcss": "^8.4.24",
"postcss-modules": "^6.0.0",
"tsx": "^3.12.7"
}
}