-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
115 lines (115 loc) · 3.31 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
{
"name": "int-ipa",
"author": "Winston Durand <me@winstondurand.com>",
"description": "An interactive tool for learning IPA transcription",
"license": "MIT",
"version": "0.7.1",
"repository": "github:R167/int-ipa",
"homepage": ".",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/styles": "^4.11.3",
"@msgpack/msgpack": "^2.7.2",
"@testing-library/dom": "^7.29.4",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/node": "^14.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router": "^5.1.11",
"@types/smoothscroll-polyfill": "^0.3.1",
"@yarnpkg/pnpify": "^2.4.0",
"clsx": "^1.1.1",
"escape-string-regexp": "^4.0.0",
"eslint": "^7.21.0",
"eslint-config-react-app": "^6.0.0",
"js-base64": "^3.6.0",
"markdown-to-jsx": "^7.1.1",
"react": "^17.0.2",
"react-async-hook": "^4.0.0",
"react-dom": "^17.0.2",
"react-meta-tags": "^1.0.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.3",
"smoothscroll-polyfill": "^0.4.4",
"superstruct": "^0.15.2",
"typescript": "^4.5.0",
"web-vitals": "^1.1.0",
"yaml": "^1.10.2",
"zbase32": "^1.0.4"
},
"scripts": {
"release": "scripts/release.sh",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint ./src",
"lint-ci": "yarn lint --max-warnings=0",
"test-ci": "yarn test --ci --all",
"fix": "yarn prettier -w ./src && eslint --fix ./src",
"analyze": "source-map-explorer 'build/static/js/*.js'"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"plugin:react-hooks/recommended"
],
"rules": {
"sort-imports": [
"warn",
{
"ignoreDeclarationSort": true
}
],
"react-hooks/exhaustive-deps": [
"warn",
{
"additionalHooks": "(useAsync|useAsyncCallback)"
}
]
}
},
"browserslist": {
"production": [
"last 2 year and last 2 major versions and >0.1%",
">1%",
"not dead",
"not op_mini all",
"not ie 11 and supports css-sticky"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"@types/react-router-dom": "^5.1.6",
"@types/wavesurfer.js": "^6",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint-plugin-flowtype": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.5",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^4.12.2",
"isomorphic-webcrypto": "^2.3.8",
"path": "^0.12.7",
"prettier": "^2.3.2",
"source-map-explorer": "^2.5.2"
},
"packageManager": "yarn@3.2.4"
}