-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 1.96 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
64
65
66
67
68
69
{
"name": "yamanote",
"version": "1.0.0",
"description": "Tool for thought: web clippings and annotation",
"main": "index.js",
"scripts": {
"prettysql": "sql-formatter -o db-v1.sql db-v1.sql && sql-formatter -o db-v2.sql db-v2.sql",
"schema": "node makeSchema.js",
"build": "tsc -p .",
"serve": "NODE_ENV=production npm run build && node index.js",
"start": "npm run serve",
"watch": "NODE_ENV=development nodemon -L -w index.js -w prelude.html index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "Unlicense",
"devDependencies": {
"@rmp135/sql-ts": "^1.12.1",
"@types/better-sqlite3": "^7.4.0",
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.13",
"@types/jsdom": "^16.2.13",
"@types/mime": "^2.0.3",
"@types/mkdirp": "^1.0.2",
"@types/multer": "^1.4.7",
"@types/node": "^16.9.2",
"@types/node-fetch": "^2.5.12",
"@types/passport": "^1.0.7",
"@types/passport-github": "^1.1.6",
"@types/passport-http-bearer": "^1.0.37",
"@types/tape": "^4.13.2",
"form-data": "^4.0.0",
"node-fetch": "^2.6.6",
"nodemon": "^2.0.15",
"sql-formatter": "^4.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.4.3"
},
"dependencies": {
"better-sqlite3": "^7.4.3",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"connect-session-knex": "^2.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"fp-ts": "^2.11.2",
"html-entities": "^2.3.2",
"io-ts": "^2.2.16",
"jsdom": "^18.1.0",
"knex": "^0.95.11",
"mime": "^3.0.0",
"mkdirp": "^1.0.4",
"multer": "^1.4.3",
"passport": "^0.5.0",
"passport-github": "^1.1.0",
"passport-http-bearer": "^1.0.1",
"sqlite3": "^5.0.0",
"srcset": "^4.0.0",
"static-path": "^0.0.4",
"tape": "^5.3.2"
},
"engines": {
"node": ">=16"
}
}