-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 loc) · 2.95 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
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "marvel-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@reach/router": "^1.2.1",
"@rebass/grid": "^6.0.0-7",
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"core-js": "^2.5.5",
"cross-env": "^5.2.0",
"crypto-js": "^3.1.9-1",
"formik": "^1.4.2",
"localforage": "^1.7.3",
"lodash": "^4.17.10",
"moment": "^2.23.0",
"numeral": "^2.0.6",
"prop-types": "^15.6.2",
"raf": "^3.4.0",
"react": "^16.3.2",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.3.2",
"react-html-parser": "^2.0.2",
"react-redux": "^5.0.6",
"react-router": "^4.3.1",
"react-router-dom": "^4.2.2",
"react-router-redux": "^4.0.8",
"react-scripts": "1.1.0",
"react-scroll": "^1.7.9",
"react-spinners": "^0.5.1",
"react-widgets": "^4.2.6",
"react-widgets-moment": "^4.0.12",
"redux": "^4.0.0",
"redux-form": "^7.2.3",
"redux-saga": "^0.16.0",
"styled-components": "^4.1.3"
},
"scripts": {
"start": "react-scripts start",
"dev": "npm-run-all -p start-js",
"build": "react-scripts build",
"build-css": "npm-run-all build-css build-js",
"test": "cross-env CI=true react-scripts test --env=jsdom",
"exec": "cross-env CI=true react-scripts test --env=jsdom --json",
"eject": "react-scripts eject",
"submit": "codenation-jest-score ./score-map.json"
},
"eslintConfig": {
"extends": "react-app"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write",
"git add"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.2.0",
"babel-loader": "^8.0.4",
"babel-plugin-emotion": "^9.2.11",
"babel-plugin-styled-components": "^1.5.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^5.0.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.7.0",
"jest": "20.0.4",
"jest-dom": "^3.0.0",
"jest-styled-components": "^6.2.1",
"lint-staged": "^7.0.4",
"npm-run-all": "^4.1.2",
"parcel-bundler": "^1.9.7",
"prettier": "^1.15.3",
"react-test-renderer": "^16.5.2",
"react-testing-library": "^5.4.4",
"stylelint": "^9.3.0",
"stylelint-config-recommended": "^2.1.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.3.1"
}
}