forked from cboard-org/cboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.36 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
{
"name": "cboard",
"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://shayc.github.io/cboard",
"private": false,
"dependencies": {
"exif-orientation-image": "^1.0.1",
"ismobilejs": "^0.4.1",
"iso-639-1": "^1.3.0",
"keycode": "^2.1.9",
"lodash.debounce": "^4.0.8",
"material-ui": "1.0.0-beta.17",
"material-ui-icons": "^1.0.0-beta.17",
"prop-types": "^15.6.0",
"ramda": "^0.24.1",
"react": "^16.0.0",
"react-autosuggest": "^9.3.2",
"react-dom": "^16.0.0",
"react-grid-layout": "^0.16.0",
"react-helmet": "^5.2.0",
"react-intl": "^2.4.0",
"react-redux": "^5.0.6",
"react-sizeme": "^2.3.6",
"redux": "^3.7.2",
"redux-beacon": "^1.2.0",
"redux-persist": "^4.10.1",
"redux-thunk": "^2.2.0",
"shortid": "^2.2.8"
},
"devDependencies": {
"decompress-zip": "^0.3.0",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"gh-pages": "^1.0.0",
"husky": "^0.14.3",
"lint-staged": "^4.2.3",
"nock": "^9.0.22",
"prettier": "^1.7.4",
"react-scripts": "1.0.14",
"react-test-renderer": "^16.0.0",
"redux-mock-store": "^1.3.0",
"sw-precache": "^5.2.0"
},
"lint-staged": {
"*.{js,json,css}": ["prettier --write", "git add"]
},
"scripts": {
"start": "react-scripts start",
"build":
"react-scripts build && sw-precache --config=sw-precache-config.js",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"test": "react-scripts test --env=jsdom",
"decrypt:local": "./scripts/decrypt-private.sh local",
"encrypt:local": "./scripts/encrypt-private.sh local",
"decrypt:prod": "./scripts/decrypt-private.sh prod",
"encrypt:prod": "./scripts/encrypt-private.sh prod",
"translations:pull":
"CBOARD_ENV=local node ./scripts/crowdin-fetch-latest.js",
"translations:push":
"CBOARD_ENV=local node ./scripts/crowdin-push-changes.js",
"eject": "react-scripts eject",
"precommit": "lint-staged"
}
}