-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.82 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
{
"name": "problem-set-09",
"version": "0.2.21.1",
"private": true,
"description": "",
"scripts": {
"test": "jest"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.13.1",
"@babel/preset-env": "^7.13.5",
"@babel/preset-react": "^7.12.13",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint-config-react-app": "^3.0.8",
"eslint-plugin-flowtype": "^3.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"jest-style-matchers": "^0.1.2",
"raf": "^3.4.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"reactstrap": "^8.9.0"
},
"jest": {
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js",
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/../__mocks__/fileMock.js"
},
"setupFiles": [
"<rootDir>/node_modules/regenerator-runtime/runtime"
],
"testEnvironment": "jsdom"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 6
},
"env": {
"browser": true,
"node": true,
"shared-node-browser": true,
"jquery": true
},
"extends": [
"eslint:recommended",
"react-app"
],
"rules": {
"no-console": "off",
"semi": [
"off",
"always",
{
"omitLastInOneLineBlock": true
}
],
"camelcase": [
"error"
],
"jsx-a11y/anchor-is-valid": [
"error",
{
"aspects": [
"noHref"
]
}
]
}
}
}