-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 4.62 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 4.62 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
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
113
114
115
116
117
118
119
120
121
122
{
"name": "citizenos-api",
"version": "5.1.9",
"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 --timeout 120000 --expose-gc --async-only --check-leaks --trace-deprecation --reporter spec --exit --recursive --ui tdd test/",
"test:setup": "bash scripts/test-parallel-setup.sh",
"test:setup:clean": "bash scripts/test-parallel-setup.sh --drop",
"test:parallel": "NODE_ENV=test ./node_modules/.bin/grunt test:parallel",
"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.1053.0",
"@aws-sdk/s3-request-presigner": "^3.1053.0",
"archiver": "7.0.1",
"base64-url": "2.3.3",
"bluebird": "3.7.2",
"body-parser": "2.2.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": "4.4.1",
"connect-redis": "^9.0.0",
"cookie-parser": "1.4.7",
"cors": "2.8.6",
"docx": "9.6.1",
"etherpad-lite-client": "git+https://github.com/citizenos/etherpad-lite-client-js#fb0f6dbf695f66a59a294bc74a07b36d6a5705bb",
"express": "5.2.1",
"express-device": "^0.4.2",
"express-rate-limit": "git+https://github.com/ilmartyrk/express-rate-limit#824644466bb9d0b5103d02c4b987d6708c03b546",
"express-session": "^1.19.0",
"express-slow-down": "3.0.1",
"fast-csv": "5.0.7",
"fast-json-patch": "^3.1.1",
"fs-extra": "11.3.5",
"glob": "^13.0.6",
"html-entities": "2.6.0",
"htmlparser2": "10.1.0",
"image-size": "2.0.2",
"json-patch-gen": "1.0.2",
"jsonwebtoken": "9.0.3",
"lodash": "4.18.1",
"log4js": "6.9.1",
"mime-types": "3.0.2",
"mobiil-id-rest": "^2.0.0",
"moment": "2.30.1",
"morgan": "1.10.1",
"mu2": "0.5.21",
"mustache": "^4.2.0",
"node-7z": "3.0.0",
"node-cron": "^4.2.1",
"nodemailer": "8.0.8",
"passport": "0.7.0",
"passport-facebook": "3.0.0",
"passport-google-oauth20": "2.0.0",
"passport-local": "1.0.0",
"pg": "8.21.0",
"pg-query-stream": "4.15.0",
"prerender-node": "3.8.3",
"rate-limit-redis": "4.3.1",
"rate-limiter-flexible": "9.1.1",
"redis": "^5.12.1",
"rss-parser": "^3.13.0",
"sanitize-filename": "1.6.4",
"sequelize": "6.37.8",
"sequelize-cli": "6.6.5",
"smart-id-rest": "^2.0.1",
"stream_upload": "0.1.6",
"striptags": "3.2.0",
"superagent": "10.3.0",
"swagger-ui-express": "5.0.1",
"twit": "^1.1.20",
"undersign": "git+https://github.com/moll/js-undersign",
"uuid": "13.0.2",
"validator": "13.15.35"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"adm-zip": "0.5.17",
"chai": "6.2.2",
"chai-datetime": "1.8.1",
"chai-shallow-deep-equal": "1.4.6",
"chai-uuid": "1.0.6",
"eslint": "^10.4.0",
"eslint-plugin-mocha": "^11.3.0",
"globals": "^17.6.0",
"grunt": "^1.6.2",
"grunt-cli": "1.5.0",
"grunt-concurrent": "^3.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-eslint": "^26.0.0",
"grunt-exec": "^3.0.0",
"grunt-plantuml": "1.0.3",
"husky": "9.1.7",
"mocha": "^11.7.6",
"supertest": "7.2.2"
},
"overrides": {
"elliptic": "^6.6.1",
"axios": "^1.16.1",
"qs": "^6.14.1",
"tough-cookie": "^4.1.3"
},
"engines": {
"node": ">=20.18.0",
"npm": ">=10.8.0"
}
}