-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 4.2 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 4.2 KB
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
118
119
120
121
122
123
124
125
126
127
128
{
"name": "input-component",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/helper-builder-react-jsx": "^7.16.7",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.6.1",
"@mui/lab": "^5.0.0-alpha.77",
"@mui/material": "^5.6.1",
"@mui/styled-engine-sc": "^5.6.1",
"@mui/styles": "^5.6.1",
"@octokit/core": "^3.6.0",
"@octokit/plugin-request-log": "^1.0.4",
"@reduxjs/toolkit": "^1.8.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@types/classnames": "^2.3.1",
"@types/enzyme": "^3.10.12",
"@types/expect-puppeteer": "^4.4.7",
"@types/jest": "^26.0.24",
"@types/jest-environment-puppeteer": "^4.4.1",
"@types/node": "^14.18.12",
"@types/puppeteer": "^5.4.5",
"@types/react": "^16.14.24",
"@types/react-dom": "^16.9.14",
"@types/react-helmet": "^6.1.5",
"@types/react-redux": "^7.1.23",
"@types/react-router-dom": "^5.3.3",
"@types/sinon": "^10.0.11",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.7",
"add": "^2.0.6",
"babel-eslint": "^10.1.0",
"classnames": "^2.3.1",
"cra-bundle-analyzer": "^0.1.1",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^5.2.1",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-flowtype": "^6.1.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-webpack-plugin": "^2.6.0",
"husky": "^4.3.8",
"istanbul-reports": "^3.1.4",
"jest": "^27.5.1",
"jest-puppeteer": "^6.1.0",
"moment": "^2.29.2",
"node-sass": "^4.14.1",
"nyc": "^15.1.0",
"prettier-eslint": "^13.0.0",
"prettier-eslint-cli": "^5.0.1",
"prop-types": "^15.8.1",
"puppeteer": "^12.0.1",
"react": "^17.0.2",
"react-code-blocks": "0.0.9-0",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-redux": "^7.2.8",
"react-router-dom": "^5.3.0",
"react-scripts": "^3.4.4",
"react-snap": "^1.23.0",
"react-syntax-highlighter": "^15.5.0",
"react-test-renderer": "^16.14.0",
"react-uuid": "^1.0.2",
"recoil": "^0.6.1",
"redux": "^4.1.2",
"scss-loader": "0.0.1",
"serve": "^11.3.2",
"sinon": "^9.2.4",
"spinners-react": "^1.0.7",
"styled-components": "^5.3.5",
"ts-jest": "^26.5.6",
"typescript": "^4.6.3",
"typings-for-scss-modules-loader": "^1.5.1",
"yarn": "^1.22.18"
},
"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": "npm test -- --coverage",
"test:clean": "rimraf ./coverage",
"test:e2e": "jest -c e2e/jest.config.js --env=puppeteer",
"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"
]
},
"devDependencies": {
"@types/react-syntax-highlighter": "^13.5.2"
}
}