forked from bluesky-social/statusphere-example-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.57 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": "atproto-example-app",
"version": "0.0.1",
"description": "",
"author": "",
"license": "MIT",
"main": "index.ts",
"private": true,
"scripts": {
"dev": "tsx watch --clear-screen=false src/index.ts | pino-pretty",
"build": "tsup",
"start": "node dist/index.js",
"lexgen": "lex gen-server ./src/lexicon ./lexicons/*",
"clean": "rimraf dist coverage"
},
"dependencies": {
"@atproto/api": "^0.13.31",
"@atproto/common": "^0.4.6",
"@atproto/identity": "^0.4.5",
"@atproto/lexicon": "^0.4.5",
"@atproto/oauth-client-node": "^0.2.8",
"@atproto/sync": "^0.1.11",
"@atproto/syntax": "^0.3.1",
"@atproto/xrpc-server": "^0.7.8",
"axios": "^1.7.9",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"bootswatch": "^5.3.3",
"dotenv": "^16.4.7",
"envalid": "^8.0.0",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"iron-session": "^8.0.4",
"javascript-time-ago": "^2.5.11",
"mongodb": "^6.12.0",
"multiformats": "^13.3.1",
"pino": "^9.6.0",
"uhtml": "^4.7.0",
"video.js": "^8.21.0"
},
"devDependencies": {
"@atproto/lex-cli": "^0.5.6",
"@biomejs/biome": "1.9.4",
"@types/express": "^4.17.21",
"@types/node": "^22.10.10",
"pino-pretty": "^13.0.0",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"tsup": {
"entry": [
"src",
"!src/**/__tests__/**",
"!src/**/*.test.*"
],
"splitting": false,
"sourcemap": true,
"clean": true
}
}