-
Notifications
You must be signed in to change notification settings - Fork 187
/
package.json
110 lines (110 loc) · 3.42 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
{
"name": "polis",
"version": "0.0.0",
"description": "polis =====",
"main": "./dist/app.js",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch & nodemon --inspect=0.0.0.0:9229 dist/app.js",
"debug": "SERVER_LOG_LEVEL=debug nodemon --inspect=0.0.0.0:9229 dist/app.js",
"serve": "node --max_old_space_size=400 --gc_interval=100 dist/app.js",
"start": "npm run build && npm run serve",
"dev": "npm install && npm run build:watch",
"type:check:watch": "tsc --watch",
"format": "prettier --config ./prettier.config.js --no-editorconfig 'src/**/*.{js,ts}' --write",
"format:check": "prettier --config ./prettier.config.js --no-editorconfig 'src/**/*.{js,ts}' --check",
"lint": "eslint --quiet .",
"lint:verbose": "eslint .",
"test": "jest --forceExit test",
"test:watch": "npm test -- --watchAll"
},
"repository": {
"type": "git",
"url": "git://github.com/pol-is/polisServer.git"
},
"author": "",
"license": "AGPL-3.0",
"dependencies": {
"@anthropic-ai/sdk": "^0.32.1",
"@google-cloud/translate": "~1.0.0",
"@google/generative-ai": "^0.21.0",
"akismet": "~0.0.11",
"async": "~0.1.22",
"aws-sdk": "~2.230.1",
"badwords": "~0.0.3",
"bcryptjs": "~2.4.3",
"bluebird": "~3.5.0",
"body-parser": "^1.20.3",
"boolean": "~0.1.3",
"compression": "^1.7.5",
"connect-timeout": "~1.9.0",
"cookie-parser": "^1.4.7",
"csv-parse": "^5.6.0",
"csv-to-xml": "^2.0.0",
"dotenv": "^16.0.3",
"express": "~3.21.2",
"fb": "~1.0.2",
"googleapis": "^142.0.0",
"html-entities": "^2.4.0",
"http-proxy": "~1.18.1",
"js2xmlparser": "^5.0.0",
"lru-cache": "~3.0.0",
"mimelib": "~0.2.19",
"morgan": "^1.10.0",
"nan": "~2.17.0",
"nodemailer": "~6.4.16",
"nodemailer-mailgun-transport": "~2.0.0",
"oauth": "~0.9.14",
"optimist": "~0.3.7",
"p3p": "~0.0.2",
"pg": "~8.8.0",
"pg-connection-string": "~2.5.0",
"pg-query-stream": "^4.6.0",
"replacestream": "~4.0.0",
"request": "~2.88.2",
"request-promise": "~4.2.6",
"response-time": "~2.3.1",
"simple-oauth2": "~0.2.1",
"simple-xml-to-json": "^1.2.3",
"source-map-support": "~0.5.21",
"sql": "~0.34.0",
"underscore": "~1.12.1",
"valid-url": "~1.0.9",
"winston": "~3.8.2",
"xmlbuilder2": "^3.1.1"
},
"devDependencies": {
"@types/async": "~3.2.6",
"@types/bcrypt": "~3.0.1",
"@types/bcryptjs": "~2.4.2",
"@types/bluebird": "~3.5.33",
"@types/connect-timeout": "~0.0.34",
"@types/express": "~4.17.11",
"@types/fb": "~0.0.28",
"@types/http-proxy": "~1.17.5",
"@types/jest": "^29.4.0",
"@types/lru-cache": "~5.1.0",
"@types/node": "~14.14.39",
"@types/nodemailer": "~6.4.1",
"@types/nodemailer-mailgun-transport": "~1.4.2",
"@types/oauth": "~0.9.1",
"@types/pg": "~7.14.11",
"@types/replacestream": "~4.0.0",
"@types/request-promise": "4.1.48",
"@types/response-time": "~2.3.4",
"@types/source-map-support": "~0.5.6",
"@types/supertest": "^2.0.12",
"@types/underscore": "~1.11.1",
"@types/valid-url": "~1.0.3",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"eslint": "^8.33.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.4.1",
"nodemon": "~2.0.20",
"prettier": "~2.2.1",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"typescript": "^5.7.2"
}
}