-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.93 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
{
"name": "workout-tracker",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "parcel build src/index.html",
"test": "jest",
"dev": "parcel src/index.html",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\" --quiet"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@testing-library/dom": "^8.18.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.0.3",
"@types/plotly.js": "^2.12.10",
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.6",
"@types/react-plotly.js": "^2.5.2",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"autoprefixer": "^10.4.11",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"firebase-tools": "^11.10.0",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"parcel": "^2.7.0",
"postcss": "^8.4.16",
"prettier": "2.7.1",
"process": "^0.11.10",
"tailwindcss": "^3.1.8",
"typescript": "^4.8.3"
},
"dependencies": {
"@react-spring/web": "^9.7.1",
"@types/react-beautiful-dnd": "^13.1.2",
"downshift": "^7.0.1",
"email-validator": "^2.0.4",
"firebase": "^9.10.0",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.2.0",
"react-firebase-hooks": "^5.0.3",
"react-insta-stories": "^2.4.2",
"react-router-dom": "^6.4.0",
"recharts": "^2.2.0"
},
"browserslist": [
"last 5 versions"
]
}