-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.14 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.14 KB
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
{
"name": "tabitha",
"version": "0.1.0",
"private": true,
"homepage": "https://demartsc.github.io/tabitha",
"dependencies": {
"annyang": "^2.6.0",
"gh-pages": "^1.1.0",
"husky": "^0.14.3",
"jquery": "^3.2.1",
"lint-staged": "^4.1.3",
"lodash": "^4.17.4",
"lodash.intersection": "^4.4.0",
"prettier": "^1.6.1",
"react": "^15.6.1",
"react-bootstrap": "^0.31.2",
"react-center-component": "^3.0.0",
"react-dom": "^15.6.1",
"react-native-speech": "^0.1.2",
"react-scripts": "1.0.12",
"react-speech-recognition": "^1.0.4",
"responsivevoice": "^0.4.1",
"tableau-api": "^2.1.3",
"underscore": "^1.8.3"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write",
"git add"
]
},
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"precommit": "lint-staged",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"devDependencies": {
"check-dependencies": "^1.1.0",
"eslint": "^4.13.0"
}
}