-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.77 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
{
"name": "data-portal-es",
"version": "0.1.0",
"private": true,
"dependencies": {
"@appbaseio/reactivesearch": "^2.8.1",
"@nivo/bar": "^0.42.1",
"@nivo/line": "^0.46.0",
"@nivo/sankey": "^0.42.1",
"@nivo/waffle": "^0.46.0",
"axios": "^0.18.0",
"cheerio": "^1.0.0-rc.2",
"cheerio-tableparser": "^1.0.1",
"classnames": "^2.2.6",
"d3": "^5.7.0",
"immutability-helper": "^2.7.1",
"js-file-download": "^0.4.4",
"lodash": "^4.17.11",
"memory-cache": "^0.2.0",
"moment": "^2.22.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-draggable": "^3.0.5",
"react-json-view": "^1.19.1",
"react-notify-toast": "^0.5.0",
"react-responsive-modal": "^3.5.1",
"react-router-dom": "^4.3.1",
"react-scripts": "1.1.5",
"react-sortablejs": "^1.3.6",
"react-to-print": "^2.0.0-alpha-2",
"request-promise": "^4.2.2",
"semantic-ui-css": "^2.3.3",
"semantic-ui-react": "^0.82.3",
"sortablejs": "^1.7.0"
},
"devDependencies": {
"autoprefixer": "^8.0.0",
"postcss-cli": "^5.0.0",
"tailwindcss": "^0.4.1"
},
"scripts": {
"build:css": "postcss src/styles/index.css -o src/index.css",
"watch:css": "postcss src/styles/index.css -o src/index.css -w",
"start": "npm run watch:css & react-scripts start",
"build": "npm run build:css && react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"deployaws": "aws s3 sync build s3://target-data-portal",
"deploytargetserver": "scp -r build/* dpuru@target.wustl.edu:/var/www/data-portal/build",
"deployhttps": "aws s3 sync build/ s3://dcc.targetepigenomics.org",
"postdeployhttps": "aws cloudfront create-invalidation --distribution-id ET0XEYXUVY3BU --paths /*"
}
}