-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.69 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.69 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
58
{
"name": "tilia-api",
"version": "0.1.0",
"engines": {
"node": ">=18"
},
"private": true,
"scripts": {
"start": "NODE_ENV=production node ./bin/www",
"dev_start": "NODE_ENV=development node ./bin/www",
"dev_www": "NODE_ENV=development ./bin/www"
},
"dependencies": {
"@terraformer/wkt": "^2.2.0",
"bluebird": "^3.7.2",
"body-parser": "^2.2.1",
"child_process": "^1.0.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.6",
"debug": "^4.3.1",
"dotenv": "^17.3.1",
"ejs": "^4.0.1",
"express": "~5.2.1",
"express-rate-limit": "^8.2.1",
"helmet": "^8.1.0",
"json5": "^2.2.3",
"morgan": "~1.10.0",
"node-postgres": "^0.6.2",
"passport": "^0.7.0",
"pg-monitor": "^3.1.0",
"pg-promise": "^12.6.1",
"read-last-lines": "^1.8.0",
"rotating-file-stream": "^3.2.9",
"serve-favicon": "~2.5.0"
},
"devDependencies": {
"eslint": "^9.39.2",
"eslint-config-standard": "^15.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-standard": "^5.0.0",
"pre-commit": "^1.2.2"
},
"description": "A repository for the implementation of the Tilia/uploader API. This API is intended to replace the current [Tilia API](https://tilia.neotomadb.org) which uses the SQL Server database and a .NET front end.",
"main": "tilia-api.js",
"repository": {
"type": "git",
"url": "https://github.com/NeotomaDB/tilia_api.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/NeotomaDB/tilia_api/issues"
},
"homepage": "https://github.com/NeotomaDB/tilia_api#readme"
}