-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.78 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
{
"name": "chrome_extension_react",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"babel-polyfill": "^6.26.0",
"chart.js": "^2.9.3",
"cors": "^2.8.5",
"express": "^4.17.1",
"firebase": "^7.14.4",
"firebase-admin": "^8.12.1",
"identity-obj-proxy": "^3.0.0",
"materialize-css": "^1.0.0-rc.2",
"react": "^16.13.1",
"react-animals": "0.0.82",
"react-chartjs-2": "^2.9.0",
"react-dom": "^16.13.1",
"react-event-timeline": "^1.6.3",
"react-materialize": "^3.9.0",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.1",
"rsuite": "^4.7.0",
"sinon-chrome": "^3.0.1",
"vertical-timeline-component-for-react": "^1.0.7"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "jest --colors",
"test:coverage": "jest --coverage --colors --config=jest.config.json --testPathIgnorePatterns tests/end2endTests",
"test1": "react-scripts test",
"eject": "react-scripts eject",
"eslint:github-action": "node ./node_modules/eslint/bin/eslint . --ignore-path .gitignore",
"stylelint": "stylelint 'src/**/*.css', 'public/css/**/*.css'",
"stylelint:fix": "stylelint 'src/**/*.css' 'public/css/**/*.css' --fix",
"lint": "eslint .",
"flow": "flow",
"lint:fix": "eslint . --fix",
"prettier": "prettier --write .",
"jscpd": "npx jscpd public src tests"
},
"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"
]
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-flow": "^7.10.1",
"@babel/preset-react": "^7.9.4",
"@testing-library/jest-dom": "^4.2.4",
"babel-eslint": "^10.1.0",
"canvas": "^2.6.1",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-standard": "^4.0.1",
"flow-bin": "^0.126.1",
"htmlhint": "^0.14.0",
"jest-puppeteer": "^4.4.0",
"jscpd": "^3.3.0-rc.8",
"jsdoc": "^3.6.4",
"prettier": "2.0.5",
"puppeteer": "^1.20.0",
"react-test-renderer": "^16.13.1",
"stylelint": "^13.5.0",
"stylelint-config-standard": "^20.0.0"
},
"jest": {
"moduleNameMapper": {
"\\.(css|less|scss|sass)$": "identity-obj-proxy",
"\\.(png|svg|pdf|jpg|jpeg)$": "<rootDir>/tests/mocks/chromeMock.js"
}
}
}