-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.53 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
{
"name": "ndxstr",
"version": "1.0.0",
"description": "Nostr indexing node",
"main": "src/index.ts",
"repository": "[email protected]:ArcadeCity/ndxstr.git",
"author": "Christopher David <[email protected]>",
"license": "CC0-1.0",
"private": true,
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"db:migrate": "knex migrate:latest",
"db:migrate:rollback": "knex migrate:rollback",
"db:seed": "knex seed:run"
},
"dependencies": {
"@noble/secp256k1": "1.6.3",
"create-hash": "1.2.0",
"dotenv": "16.0.2",
"express": "4.18.1",
"knex": "2.3.0",
"pg": "8.8.0",
"pg-query-stream": "4.2.4",
"ramda": "0.28.0",
"websocket-polyfill": "0.0.3"
},
"devDependencies": {
"@types/express": "4.17.13",
"@types/node": "18.7.14",
"@types/ramda": "0.28.15",
"concurrently": "7.3.0",
"nodemon": "2.0.19",
"typescript": "4.8.2",
"uuid": "8.3.2"
},
"prettier": {
"arrowParens": "always",
"bracketSameLine": true,
"bracketSpacing": true,
"embeddedLanguageFormatting": "auto",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxBracketSameLine": false,
"jsxSingleQuote": true,
"printWidth": 100,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false,
"vueIndentScriptAndStyle": false
}
}