forked from citizenos/citizenos-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 4.22 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "citizenos-api",
"version": "5.0.6",
"private": false,
"license": "Apache-2.0",
"main": "./bin/www",
"scripts": {
"start": "NODE_ENV=development node --trace-warnings ./bin/www",
"debug": "node --expose-gc --debug ./bin/www",
"test": "NODE_ENV=test FORCE_DB_SYNC=0 NODE_TLS_REJECT_UNAUTHORIZED=0 ./node_modules/.bin/mocha --expose-gc --async-only --check-leaks --trace-deprecation --reporter spec --no-exit --recursive --ui tdd test/",
"eslint": "./node_modules/.bin/grunt eslint",
"dbcreate": "echo ${DATABASE_URL?\"ERROR: Need to set DATABASE_URL environment variable!\"} && createdb -E utf8 \"${DATABASE_URL##*/}\" && psql -f db/config/database.sql \"$DATABASE_URL\"",
"dbdump": "pg_dump --schema-only --no-privileges --no-owner ${DATABASE_URL?\"ERROR: Need to set DATABASE_URL environment variable!\"} > db/config/database.sql && pg_dump --data-only --table '\"SequelizeMeta\"' $DATABASE_URL | sed -ne '/^COPY/,/\\\\./p' >> db/config/database.sql",
"dbstatus": "./node_modules/.bin/sequelize db:migrate:status",
"dbmigrate": "./node_modules/.bin/sequelize db:migrate",
"dbrollback": "./node_modules/.bin/sequelize db:migrate:undo",
"docs": "./node_modules/.bin/grunt docs",
"prepare": "husky"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.617.0",
"@aws-sdk/s3-request-presigner": "^3.617.0",
"archiver": "7.0.1",
"base64-url": "2.3.3",
"bluebird": "3.7.2",
"body-parser": "1.20.2",
"busboy": "1.6.0",
"campaign": "git+https://github.com/citizenos/campaign#9904ac1e3628ffa3a49beb87914679c7b61a0e06",
"campaign-mailgun": "git+https://github.com/citizenos/campaign-mailgun.git#fdb84348b37f701ede999aa609218de367fcef9b",
"campaign-mustache": "git+https://github.com/citizenos/campaign-mustache#0e6021098a3104011ced756e6409501cd0651f90",
"campaign-nodemailer": "1.1.0",
"campaign-terminal": "git+https://github.com/citizenos/campaign-terminal#83bca04d61f8730b23c5439601d513ceae7c4012",
"config": "3.3.12",
"connect-redis": "^7.1.1",
"cookie-parser": "1.4.6",
"cors": "2.8.5",
"docx": "8.5.0",
"etherpad-lite-client": "git+https://github.com/citizenos/etherpad-lite-client-js#fb0f6dbf695f66a59a294bc74a07b36d6a5705bb",
"express": "4.19.2",
"express-device": "0.4.2",
"express-rate-limit": "git+https://github.com/ilmartyrk/express-rate-limit#824644466bb9d0b5103d02c4b987d6708c03b546",
"express-session": "^1.18.0",
"express-slow-down": "2.0.3",
"fast-csv": "5.0.1",
"fast-json-patch": "^3.1.1",
"fs-extra": "11.2.0",
"html-entities": "2.5.2",
"htmlparser2": "9.1.0",
"image-size": "1.1.1",
"json-patch-gen": "1.0.2",
"jsonwebtoken": "9.0.2",
"lodash": "4.17.21",
"log4js": "6.9.1",
"mime-types": "2.1.35",
"mobiil-id-rest": "1.2.5",
"moment": "2.30.1",
"morgan": "1.10.0",
"mu2": "0.5.21",
"mustache": "^4.2.0",
"node-7z": "3.0.0",
"node-cron": "^3.0.3",
"nodemailer": "6.9.14",
"passport": "0.7.0",
"passport-facebook": "3.0.0",
"passport-google-oauth20": "2.0.0",
"passport-local": "1.0.0",
"pg": "8.12.0",
"pg-query-stream": "4.6.0",
"prerender-node": "3.8.0",
"rate-limit-redis": "4.2.0",
"rate-limiter-flexible": "5.0.3",
"redis": "^4.6.15",
"rss-parser": "^3.13.0",
"sanitize-filename": "1.6.3",
"sequelize": "6.37.3",
"sequelize-cli": "6.6.2",
"smart-id-rest": "1.2.4",
"stream_upload": "0.1.6",
"striptags": "3.2.0",
"superagent": "9.0.2",
"swagger-ui-express": "5.0.1",
"twit": "2.2.11",
"undersign": "0.1.337",
"uuid": "10.0.0",
"validator": "13.12.0"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"adm-zip": "0.5.14",
"chai": "4.5.0",
"chai-datetime": "1.8.0",
"chai-shallow-deep-equal": "1.4.6",
"chai-uuid": "1.0.6",
"eslint": "^9.7.0",
"eslint-plugin-mocha": "^10.4.3",
"globals": "^15.8.0",
"grunt": "1.6.1",
"grunt-cli": "1.5.0",
"grunt-concurrent": "3.0.0",
"grunt-contrib-watch": "1.1.0",
"grunt-eslint": "25.0.0",
"grunt-exec": "3.0.0",
"grunt-plantuml": "1.0.3",
"husky": "9.1.2",
"mocha": "10.7.0",
"supertest": "7.0.0"
},
"engines": {
"node": "20.15.1",
"npm": "10.7.0"
}
}