forked from martinbedouret/cboard-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.3 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
{
"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": {
"azure-storage": "^2.10.3",
"bcryptjs": "^2.4.3",
"body-parser": "1.19.0",
"connect-mongo": "^3.2.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"dotenv-defaults": "2.0.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"googleapis": "^49.0.0",
"https": "^1.0.0",
"jsonwebtoken": "^8.5.1",
"mockery": "^2.1.0",
"moment": "2.24.0",
"mongoose": "^5.12.2",
"morgan": "^1.10.0",
"ms": "^2.1.2",
"nodemailer": "^6.4.16",
"passport": "^0.4.1",
"passport-facebook": "^3.0.0",
"passport-google-oauth": "^2.0.0",
"pem": "^1.14.3",
"rand-token": "0.4.0",
"sendgrid": "5.2.3",
"should": "^13.2.3",
"snyk": "^1.465.0",
"swagger": "git://github.com/swagger-api/swagger-node.git#fffa399",
"swagger-express-mw": "^0.7.0",
"swagger-tools": "^0.10.4",
"translate-api": "^0.3.18",
"uuid": "^3.4.0",
"validator": "^12.1.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",
"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 --recursive --reporter mocha-junit-reporter --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
}