-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.69 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": "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": "^1.20.2",
"child_process": "^1.0.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"debug": "^4.3.1",
"dotenv": "^8.2.0",
"ejs": "^3.1.8",
"express": "~4.21.0",
"express-rate-limit": "^6.9.0",
"helmet": "^7.1.0",
"json5": "^2.2.3",
"morgan": "~1.10.0",
"node-postgres": "^0.6.2",
"passport": "^0.6.0",
"pg-monitor": "^1.4.1",
"pg-promise": "^11.5.5",
"read-last-lines": "^1.8.0",
"rotating-file-stream": "^2.1.3",
"serve-favicon": "~2.5.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.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"
}