This repository has been archived by the owner on Feb 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
86 lines (86 loc) · 2.56 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
78
79
80
81
82
83
84
85
86
{
"name": "inspire-next-react",
"license": "GPL-2.0",
"version": "0.1.0",
"proxy": "http://localhost:5000",
"bundlesize": [
{
"path": "./build/**/*.js",
"maxSize": "350 kB"
}
],
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "yarn lint && yarn test:unit && yarn test:ui && yarn test:size",
"test:ui": "./run-ui-tests.sh",
"test:unit": "craco test",
"test:unit:log": "craco test --verbose=false",
"test:size": "bundlesize",
"eject": "react-scripts eject",
"lint":
"./node_modules/eslint/bin/eslint.js ./src --ext .js,.jsx --fix --config .eslintrc",
"precommit": "pretty-quick --single-quote --staged"
},
"dependencies": {
"@babel/runtime": "7.0.0-beta.55",
"@craco/craco": "^3.1.0",
"@sentry/browser": "^4.3.0",
"antd": "^3.4.1",
"axios": "^0.18.0",
"classnames": "^2.2.6",
"formik": "^1.0.2",
"history": "^4.7.2",
"immutable": "^3.8.2",
"is-valid-orcid": "^1.2.0",
"jsondiffpatch": "^0.3.11",
"lodash.clonedeep": "^4.5.0",
"lodash.debounce": "^4.0.8",
"lodash.isempty": "^4.4.0",
"lodash.isplainobject": "^4.0.6",
"lodash.mergewith": "^4.6.1",
"lodash.transform": "^4.6.0",
"math-interval-2": "^1.1.0",
"qs": "^6.5.1",
"react": "^16.2.0",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.2.0",
"react-latex-next": "^1.1.0",
"react-loadable": "^5.4.0",
"react-piwik": "^1.6.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.9",
"react-scripts": "2.0.3",
"react-vis": "^1.9.2",
"redux": "^3.7.2",
"redux-devtools-extension": "^2.13.2",
"redux-thunk": "^2.2.0",
"tachyons": "^4.10.0",
"yup": "^0.26.0"
},
"devDependencies": {
"@epegzz/sass-vars-loader": "^3.4.0",
"axios-mock-adapter": "^1.15.0",
"babel-plugin-import": "^1.11.0",
"bundlesize": "^0.17.0",
"craco-less": "^1.2.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.3",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.3.0",
"husky": "^0.14.3",
"jest-enzyme": "^6.0.0",
"jest-localstorage-mock": "^2.2.0",
"node-sass": "^4.9.0",
"prettier": "1.12.1",
"pretty-quick": "^1.6.0",
"react-app-rewire-sass-rule": "^2.1.1",
"react-test-renderer": "^16.2.0",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.1",
"webpack-filter-warnings-plugin": "^1.2.1"
},
"browserslist": [">0.2%", "not dead", "not ie <= 11", "not op_mini all"]
}