-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.19 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
{
"name": "react-parcel-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"start": "parcel index.html -p 3000 --open",
"build": "parcel build src/index.js",
"deploy": "rm -rf dist/ && yarn build && NODE_DEBUG=gh-pages gh-pages -d dist"
},
"author": "Tetiana Platonova",
"license": "MIT",
"dependencies": {
"autoprefixer": "^9.1.0",
"classnames": "^2.2.6",
"postcss-modules": "^1.3.2",
"prop-types": "^15.6.2",
"query-string": "^6.1.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"redux": "^4.0.0",
"redux-devtools-extension": "^2.13.5",
"redux-observable": "^1.0.0",
"reselect": "^3.0.1",
"rxjs": "^6.2.2",
"rxjs-compat": "^6.2.2"
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^7.2.3",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-react-app": "^3.1.2",
"babel-preset-stage-0": "^6.24.1",
"enzyme": "^3.6.0",
"eslint": "^6.0.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.1.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.5.0",
"jsdom": "^12.0.0",
"node-sass": "^4.9.3",
"parcel-bundler": "^1.9.7"
},
"browserslist": [
"defaults"
],
"jest": {
"testRegex": "((\\.|/)(test))\\.js$",
"moduleFileExtensions": [
"jsx",
"js"
],
"moduleDirectories": [
"node_modules",
"src"
],
"rootDir": "src",
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|scss)$": "identity-obj-proxy"
},
"setupFiles": [
"<rootDir>/__mocks__/browserMock.js"
]
}
}