-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.55 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
{
"name": "transcript-explore",
"version": "0.1.0",
"private": true,
"homepage": "http://prototypes.cortico.ai/transcript-explore",
"dependencies": {
"classnames": "^2.2.5",
"d3": "^4.12.0",
"node-sass-chokidar": "^1.5.0",
"npm-run-all": "^4.1.2",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-audio-player": "^0.6.4",
"react-dom": "^16.2.0",
"react-fa": "^5.0.0",
"react-howler": "^3.7.3",
"react-router-dom": "^4.2.2",
"react-scripts": "1.0.17",
"react-transition-group": "^2.2.1",
"react-url-query": "^1.4.0",
"reactstrap": "^6.2.0",
"shortid": "^2.2.8"
},
"scripts": {
"start": "npm-run-all -p watch-css start-js",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"prettier": "prettier --single-quote --trailing-comma \"es5\" --write \"src/**/*.{js,jsx}\"",
"update-word-data": "(cd ../../cortico/doug-experiments && git pull); cp ../../cortico/doug-experiments/talkradio/data/*.tsv public/data/",
"deploy-prototype": "rsync -ruvz --delete build/ prototypes:/lsm/cortico-prototypes/transcript-explore/",
"deploy": "npm-run-all update-word-data deploy-prototype"
},
"devDependencies": {
"prettier": "1.9.2"
}
}