forked from gpsimpact/mainstream_relational_frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·65 lines (65 loc) · 2.19 KB
/
package.json
File metadata and controls
executable file
·65 lines (65 loc) · 2.19 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "client",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-free": "^5.10.2",
"@fortawesome/fontawesome-svg-core": "^1.2.22",
"@fortawesome/react-fontawesome": "^0.1.4",
"@material-ui/core": "^4.1.3",
"@material-ui/icons": "^4.2.1",
"apollo-cache-inmemory": "^1.1.9",
"apollo-client": "^2.2.5",
"apollo-link-context": "^1.0.7",
"apollo-link-error": "^1.0.7",
"apollo-link-http": "^1.5.2",
"bootstrap": "^4.0.0",
"bulma": "^0.6.2",
"bulma-extensions": "^1.0.14",
"date-fns": "^1.29.0",
"formik": "^0.11.11",
"graphql": "0.12.3",
"graphql-tag": "^2.8.0",
"jwt-decode": "^2.2.0",
"node-sass-chokidar": "^1.2.2",
"npm-run-all": "^4.1.5",
"querystring": "^0.2.0",
"react": "^16.2.0",
"react-apollo": "^2.1.0-beta.2",
"react-bootstrap": "^1.0.0-beta.9",
"react-dom": "^16.2.0",
"react-https-redirect": "^1.1.0",
"react-markdown": "^3.3.0",
"react-router-bootstrap": "^0.25.0",
"react-router-dom": "^4.2.2",
"react-router-prop-types": "^1.0.2",
"react-router-scroll-top": "^0.2.1",
"react-scripts": "1.1.1",
"react-virtualized": "^9.18.5",
"reactstrap": "^5.0.0-beta.2",
"yup": "^0.24.1"
},
"scripts": {
"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": "set HTTPS=true&&react-scripts start",
"start": "NODE_ENV=production npm-run-all -p watch-css start-js",
"dev": "NODE_ENV=development npm-run-all -p watch-css start-js-dev",
"start-js-dev": "PORT=3001 react-scripts start",
"build-js": "react-scripts build",
"build": "npm-run-all build-css build-js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 9001 -c .storybook"
},
"proxy": "http://localhost:3000/",
"devDependencies": {
"@storybook/react": "^3.3.14",
"autoprefixer": "^8.0.0",
"babel-core": "^6.26.0",
"prettier": "^1.14.3"
},
"engines": {
"node": "11.10.1"
}
}