-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.79 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.79 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
{
"name": "pastebin-demo",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"server": "npm run build:server && npm run start:server",
"build:server": "tsc --project tsconfig.server.json",
"start:server": "node dist/server/index.js",
"start": "npm run build && npm run build:server && npm run start:server",
"dev:server": "tsx watch src/server/index.ts",
"dev:all": "concurrently \"npm run dev\" \"npm run dev:server\""
},
"dependencies": {
"@codemirror/lang-cpp": "6.0.2",
"@codemirror/lang-java": "6.0.1",
"@codemirror/lang-javascript": "6.2.1",
"@codemirror/lang-python": "6.1.3",
"@uiw/react-codemirror": "4.21.21",
"bcryptjs": "2.4.3",
"better-sqlite3": "^11.8.1",
"cors": "2.8.5",
"express": "4.18.2",
"jsonwebtoken": "9.0.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router-dom": "6.22.1",
"sequelize": "6.37.1",
"sqlite3": "5.1.7"
},
"devDependencies": {
"@types/bcryptjs": "2.4.6",
"@types/better-sqlite3": "^7.6.12",
"@types/cors": "2.8.17",
"@types/express": "4.17.21",
"@types/jsonwebtoken": "9.0.5",
"@types/node": "20.17.17",
"@types/react": "18.2.55",
"@types/react-dom": "18.2.19",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"@vitejs/plugin-react": "4.2.1",
"concurrently": "8.2.2",
"eslint": "8.56.0",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-refresh": "0.4.5",
"ts-node": "10.9.2",
"tsx": "4.7.0",
"typescript": "5.7.3",
"vite": "5.1.0"
}
}