-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.66 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
{
"name": "unreed-app",
"version": "1.0.0",
"description": "",
"main": "server.js",
"type": "module",
"scripts": {
"dev": "bun server.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"lint:prettier": "prettier --check .",
"lint:typescript": "tsc",
"build": "vite build",
"build:storybook": "storybook build",
"storybook": "storybook dev -p 6006",
"db:setup": "./backend/db/setup-local-db.sh",
"db:testdata": "bun backend/db/generate-testdata.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eirslett/unreed-app.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/eirslett/unreed-app/issues"
},
"prettier": {
"singleQuote": true
},
"homepage": "https://github.com/eirslett/unreed-app#readme",
"dependencies": {
"@fontsource/inter": "^5.1.0",
"clsx": "^2.1.1",
"cookie-parser": "^1.4.6",
"date-fns": "^4.1.0",
"express": "^4.21.0",
"jose": "^5.9.3",
"mysql2": "^3.11.3",
"openid-client": "^5.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.2",
"rxdb": "^15.34.1",
"rxjs": "^7.8.1",
"timeago.js": "^4.0.2",
"uuid": "^10.0.0"
},
"devDependencies": {
"@faker-js/faker": "^9.0.3",
"@storybook/react-vite": "8.3.5",
"@types/bun": "latest",
"@types/cookie-parser": "^1.4.7",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.3.2",
"prettier": "^3.3.3",
"rollup-plugin-visualizer": "^5.12.0",
"storybook": "^8.3.5",
"typescript": "^5.6.2",
"vite": "^5.4.8"
}
}