-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
117 lines (117 loc) · 3.85 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "basic-charts",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/helper-builder-react-jsx": "^7.10.4",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@octokit/core": "^3.1.4",
"@octokit/plugin-request-log": "1.0.2",
"@reduxjs/toolkit": "^1.4.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/classnames": "^2.2.10",
"@types/d3": "^6.7.0",
"@types/enzyme": "^3.10.8",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/expect-puppeteer": "^4.4.4",
"@types/jest": "^26.0.9",
"@types/jest-environment-puppeteer": "^4.4.0",
"@types/node": "^14.0.27",
"@types/puppeteer": "^3.0.2",
"@types/react": "^16.9.44",
"@types/react-dom": "^16.9.8",
"@types/react-helmet": "^6.1.0",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.5",
"@types/sinon": "^9.0.8",
"@types/styled-components": "^5.1.2",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"@typescript-eslint/scope-manager": "^4.6.1",
"add": "^2.0.6",
"babel-eslint": "^10.1.0",
"classnames": "^2.2.6",
"d3": "^6.7.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"enzyme-to-json": "^3.6.1",
"eslint-config-airbnb-typescript": "^9.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-import-resolver-typescript": "^2.2.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"eslint-webpack-plugin": "^2.1.0",
"istanbul-reports": "^3.0.2",
"jest-puppeteer": "^4.4.0",
"moment": "^2.29.1",
"node-sass": "^4.14.1",
"nyc": "^15.1.0",
"prettier-eslint": "^11.0.0",
"prettier-eslint-cli": "^5.0.0",
"prop-types": "^15.7.2",
"puppeteer": "^5.4.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-helmet": "^6.1.0",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"react-test-renderer": "^16.14.0",
"react-uuid": "^1.0.2",
"recoil": "0.1.2",
"redux": "^4.0.5",
"scss-loader": "^0.0.1",
"serve": "^11.3.2",
"sinon": "^9.2.0",
"styled-components": "^5.1.1",
"ts-jest": "^26.4.3",
"typescript": "^4.2.3",
"typings-for-scss-modules-loader": "^1.5.1",
"yarn": "^1.22.10"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./",
"fix": "eslint --ext .js,.jsx,.ts,.tsx --fix ./",
"format": "prettier --write 'src/**/*.{ts,tsx,scss,css,json}'",
"isready": "yarn format && yarn lint && yarn build",
"coverage": "yarn test -- --coverage",
"test:clean": "rimraf ./coverage",
"test:e2e": "jest -c e2e/jest.config.js",
"test:e2e-alone": "node e2e/puppeteer_standalone.js",
"test:e2e-watch": "jest -c e2e/jest.config.js --watch",
"test:debug": "react-scripts --inspect-brk test --runInBand --no-cache",
"build:serve": "yarn build && serve -s build",
"build:profile": "yarn build --profile && serve -s build",
"analyze": "yarn build && source-map-explorer 'build/static/js/*.js'",
"analyzer": "yarn build && npx cra-bundle-analyzer"
},
"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"
]
}
}