forked from cboard-org/cboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.65 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
{
"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://app.cboard.io",
"private": false,
"dependencies": {
"axios": "^0.17.1",
"browser-image-resizer": "^1.1.3",
"formik": "^0.10.5",
"ismobilejs": "^0.4.1",
"iso-639-1": "2.0.1",
"keycode": "^2.1.9",
"lodash.debounce": "^4.0.8",
"material-ui": "1.0.0-beta.36",
"material-ui-icons": "^1.0.0-beta.17",
"opencollective": "^1.0.3",
"prop-types": "^15.6.0",
"ramda": "^0.25.0",
"react": "^16.2.0",
"react-autosuggest": "^9.3.2",
"react-dom": "^16.2.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.1",
"redux-persist": "^5.4.0",
"redux-thunk": "^2.2.0",
"shortid": "^2.2.8",
"yup": "^0.24.0"
},
"devDependencies": {
"decompress-zip": "^0.3.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"husky": "^0.14.3",
"lint-staged": "^6.0.1",
"nock": "^9.1.6",
"prettier": "1.10.2",
"react-scripts": "1.1.0",
"react-test-renderer": "^16.2.0",
"redux-mock-store": "^1.4.0",
"sw-precache": "^5.2.1"
},
"lint-staged": {
"*.{js,json,css}": ["prettier --write", "git add"]
},
"jest": {
"collectCoverageFrom": ["src/**/*.js", "!src/components/**/index.js"]
},
"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",
"postinstall": "opencollective postinstall"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/cboard"
}
}