-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
56 lines (56 loc) · 1.41 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
{
"name": "cboard-io",
"version": "0.1.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",
"dependencies": {
"@crowdin/crowdin-api-client": "^1.11.1",
"axios": "^0.19.2",
"fs-extra": "9.0.1",
"opencollective": "^1.0.3",
"ramda": "^0.27.0"
},
"devDependencies": {
"decompress-zip": "^0.3.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css}": [
"prettier --write",
"git add"
]
},
"scripts": {
"analyze": "source-map-explorer build/static/js/**/*.js",
"translations:pull": "CBOARD_ENV=local node ./scripts/crowdin-fetch-latest.js",
"translations:push": "CBOARD_ENV=local node ./scripts/crowdin-push-changes.js",
"postinstall": "opencollective postinstall"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/cboard"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}