forked from zooniverse/alice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.35 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
{
"name": "text-editor",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.21",
"@fortawesome/free-solid-svg-icons": "^5.10.1",
"@fortawesome/react-fontawesome": "^0.1.4",
"@storybook/addon-storyshots": "^5.2.5",
"@zooniverse/grommet-theme": "^2.1.0",
"babel-preset-react-app": "^7.0.0",
"coveralls": "^3.0.7",
"downloadjs": "^1.4.7",
"formik": "^1.5.8",
"frisbee": "^3.1.0",
"graphql-request": "^1.8.2",
"grommet": "^2.7.11",
"grommet-icons": "^4.3.0",
"jest-styled-components": "^6.3.3",
"jest-when": "^2.7.0",
"mobx": "^5.13.0",
"mobx-devtools-mst": "^0.9.21",
"mobx-react": "^6.1.1",
"mobx-state-tree": "^3.14.1",
"mst-middlewares": "^3.15.0",
"panoptes-client": "3.2.0",
"publisssh": "^1.1.0",
"ramda": "^0.26.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-rnd": "^10.1.1",
"react-router-dom": "^5.1.0",
"react-scripts": "3.0.1",
"rosie": "^2.0.1",
"styled-components": "^4.3.2",
"yup": "^0.27.0"
},
"devDependencies": {
"@storybook/addon-actions": "^5.2.5",
"@storybook/addon-links": "^5.2.5",
"@storybook/addons": "^5.2.5",
"@storybook/react": "^5.2.5",
"babel-core": "^6.26.3",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "~1.14.0",
"nock": "^11.3.5",
"require-context.macro": "^1.2.2"
},
"homepage": "https://alice.zooniverse.org",
"scripts": {
"_publish": "publisssh ./build \"zooniverse-static/$PATH_ROOT\"",
"deploy": "export PATH_ROOT=alice.zooniverse.org; yarn build && yarn _publish",
"stage": "export REACT_APP_ENV=development; export PATH_ROOT=preview.zooniverse.org/alice; yarn build && yarn _publish",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --coverage --watchAll=false --silent",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}