-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
95 lines (95 loc) · 2.45 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
{
"name": "cboard-api",
"version": "1.3.1",
"description": "Cboard is an augmentative and alternative communication (AAC) web application, allowing users with speech and language impairments (autism, cerebral palsy) to communicate by symbols and text-to-speech.",
"keywords": [
"aac",
"autism",
"cerebral-palsy",
"progressive-web-app",
"communication-board",
"speech",
"language",
"tts",
"text-to-speech"
],
"homepage": "https://www.cboard.io",
"private": false,
"license": "GPL-3.0-only",
"author": "Martin Bedouret",
"contributors": [
"Martin Bedouret <[email protected]>"
],
"main": "app.js",
"dependencies": {
"@snyk/protect": "1.1056.0",
"applicationinsights": "^2.7.3",
"axios": "^1.6.4",
"azure-storage": "^2.10.6",
"bcryptjs": "^2.4.3",
"body-parser": "1.20.2",
"connect-mongo": "^3.2.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"dotenv-defaults": "2.0.2",
"express": "^4.19.2",
"express-session": "^1.17.3",
"googleapis": "^110.0.0",
"https": "^1.0.0",
"jsonwebtoken": "^9.0.2",
"mockery": "^2.1.0",
"moment": "2.29.4",
"mongoose": "^5.13.20",
"morgan": "^1.10.0",
"ms": "^2.1.3",
"node-ipinfo": "^3.4.6",
"openai": "^3.3.0",
"nodemailer": "^6.9.9",
"passport": "^0.6.0",
"passport-apple": "^2.0.2",
"passport-facebook": "^3.0.0",
"passport-facebook-token": "^4.0.0",
"passport-google-oauth": "^2.0.0",
"passport-google-token": "^0.1.2",
"pem": "^1.14.8",
"rand-token": "0.4.0",
"sendgrid": "5.2.3",
"should": "^13.2.3",
"swagger-express-mw": "^0.7.0",
"swagger-tools": "^0.10.4",
"translate-api": "^0.3.18",
"uuid": "^3.4.0",
"validator": "^13.11.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"chai": "^4.2.0",
"husky": "^4.2.0",
"lint-staged": "^10.0.2",
"mocha": "^8.2.1",
"mocha-junit-reporter": "^2.0.0",
"nock": "^13.2.9",
"nodemailer-mock": "^1.5.8",
"nodemon": "^1.19.4",
"prettier": "^1.19.1",
"supertest": "^6.1.1"
},
"scripts": {
"dev": "nodemon app.js",
"start": "node app.js",
"test": "NODE_ENV=test mocha ./test/controllers --exit",
"precommit": "lint-staged",
"snyk-protect": "snyk-protect",
"prepare": "npm run snyk-protect"
},
"lint-staged": {
"*.{js,json,css}": [
"prettier --write",
"git add"
]
},
"engines": {
"node": ">=6.0"
},
"snyk": true
}