-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.99 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
{
"name": "react-web-apis",
"description": "Testing Web APIs With React + TypeScript + Tailwind CSS + Parcel",
"private": true,
"version": "1.0.0",
"license": "MIT",
"author": {
"name": "Luan Eduardo da Costa",
"url": "https://github.com/LuanEdCosta"
},
"homepage": "https://luanedcosta.github.io/react-web-apis/",
"browserslist": "> 0.5%, last 2 versions, not dead",
"source": "src/index.html",
"alias": {
"src": "./src"
},
"scripts": {
"test": "jest --no-cache",
"dev": "parcel",
"serve": "serve dist",
"build": "parcel build --public-url ./",
"clean": "rimraf .parcel-cache dist",
"deploy": "gh-pages -d dist",
"predeploy": "yarn clean && yarn build",
"eslint:lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"eslint:fix": "eslint src --ext .js,.jsx,.ts,.tsx --fix"
},
"dependencies": {
"i18next": "^21.6.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-error-boundary": "^3.1.4",
"react-i18next": "^11.15.2",
"react-icons": "^4.3.1",
"react-router-dom": "^6.2.1"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.0.3",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"autoprefixer": "^10.4.0",
"babel-jest": "^27.4.5",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"gh-pages": "^3.2.3",
"jest": "^27.4.5",
"parcel": "^2.0.1",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"serve": "^13.0.2",
"tailwindcss": "^3.0.8",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
}
}