-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.62 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
{
"name": "calorie-tracker",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next build && next start",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@reduxjs/toolkit": "^1.7.1",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/typography": "^0.5.1",
"@types/cookies": "^0.7.7",
"@types/jest": "^27.4.0",
"@types/js-cookie": "^3.0.1",
"@types/lodash.debounce": "^4.0.6",
"@types/react-window": "^1.8.5",
"autoprefixer": "^10.4.2",
"axios": "^0.25.0",
"chart.js": "^3.7.0",
"cookies": "^0.8.0",
"date-fns": "^2.28.0",
"jest": "27.4.0",
"js-cookie": "^3.0.1",
"lodash.debounce": "^4.0.8",
"next": "12.0.9",
"react": "17.0.2",
"react-chartjs-2": "^4.0.1",
"react-datepicker": "^4.6.0",
"react-dom": "17.0.2",
"react-hook-form": "^7.25.3",
"react-redux": "^7.2.6",
"react-window": "^1.8.6",
"swr": "^1.2.0",
"tailwindcss": "^3.0.18"
},
"devDependencies": {
"@types/enzyme": "^3.10.11",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/node": "17.0.13",
"@types/react": "17.0.38",
"@types/react-datepicker": "^4.3.4",
"babel-core": "^6.26.3",
"babel-jest": "^27.4.6",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-to-json": "^3.6.2",
"eslint": "8.8.0",
"eslint-config-next": "12.0.9",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
}
}