-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 2.46 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
{
"name": "react-ts",
"version": "1.1.14",
"description": "Analyser of sound waves, to aid in the tuning of musical instruments. It detects frequencies between C₀ (16,35 Hertz) and B₈ (7902,13 Hertz), and shows a musical note that matches the recognized frequency.",
"private": true,
"scripts": {
"build": "webpack --mode=production",
"start": "webpack-dev-server --mode development",
"lint": "eslint --fix . --ext .js,.jsx,.ts,.tsx",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"react17",
"typescript",
"webpack"
],
"authors": [
{
"name": "wesley (leydev)",
"url": "https://github.com/ayelsew"
},
{
"name": "Renan Lopes",
"url": "https://github.com/RenanLopes77"
}
],
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@types/marked": "^4.0.1",
"@types/node": "^17.0.8",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/webpack-dev-server": "^4.7.2",
"@types/workbox-webpack-plugin": "^5.1.8",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"autoprefixer": "^10.4.2",
"babel-loader": "^8.2.5",
"copy-webpack-plugin": "^10.2.1",
"css-loader": "^6.7.1",
"eslint": "^8.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"postcss": "^8.4.5",
"postcss-loader": "^6.2.1",
"sass": "^1.53.0",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"tailwindcss": "^3.0.15",
"ts-node": "^10.9.1",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "^4.5.4",
"url-loader": "^4.1.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"workbox-webpack-plugin": "^6.4.2"
},
"dependencies": {
"i18next": "^21.6.7",
"marked": "^4.0.10",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-i18next": "^11.15.3",
"react-redux": "^7.2.6",
"redux": "^4.0.5",
"redux-persist": "^6.0.0"
},
"license": "SEE LICENSE IN <LICENSE>"
}