-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.74 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
{
"name": "bitcoin-price-tracker",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npm run build:next",
"build:next": "next build",
"start": "NODE_ENV=production node dist/index.js",
"type-check": "tsc",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"test": "NODE_ENV=test jest"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.10.9",
"@mui/material": "^5.10.12",
"@n8tb1t/use-scroll-position": "^2.0.3",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.8",
"axios": "^1.1.3",
"eslint-config-next": "13.0.2",
"next": "13.0.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"swr": "^1.3.0",
"validator": "^13.7.0",
"victory": "^36.6.8"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/react-test-renderer": "^18.0.0",
"@types/validator": "^13.7.10",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"babel-jest": "^29.3.1",
"eslint": "^8.26.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.4.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-testing-library": "^5.9.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
}
}