-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.97 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.97 KB
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
{
"name": "rainbow-tracker",
"version": "3.0.0",
"private": true,
"description": "Laziness tracker.",
"main": "src/index.tsx",
"keywords": [],
"author": "Emils Bernhards",
"license": "ISC",
"proxy": "http://localhost:3000",
"engines": {
"node": ">=16.x"
},
"scripts": {
"start": "vite",
"build": "vite build",
"lint": "eslint --ext .js --ext .jsx --ext .ts --ext .tsx src/",
"lint:fix": "eslint --fix --ext .js --ext .jsx --ext .ts --ext .tsx src/",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"debounce": "1.2.1",
"easy-peasy": "5.0.4",
"isomorphic-fetch": "^3.0.0",
"luxon": "2.3.0",
"node-sass": "7.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-onclickoutside": "6.12.1",
"react-query": "^3.34.15",
"react-router-dom": "6.2.1",
"react-toastify": "^8.2.0",
"recharts": "2.1.9",
"redux": "^4.1.2",
"sass": "^1.49.7",
"styled-components": "^5.3.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/debounce": "1.2.1",
"@types/jest": "27.4.0",
"@types/luxon": "2.0.9",
"@types/qs": "^6.9.7",
"@types/react": "17.0.39",
"@types/react-dom": "17.0.11",
"@types/react-onclickoutside": "^6.7.4",
"@types/recharts": "1.8.23",
"@types/styled-components": "^5.1.23",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"@vitejs/plugin-react": "1.2.0",
"eslint": "^8.9.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-flowtype": "^8.0.3",
"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",
"tslint": "^6.1.3",
"typescript": "4.5.5",
"vite": "2.8.1",
"vite-plugin-svgr": "^1.0.1",
"vite-tsconfig-paths": "^3.4.0"
},
"browserslist": {
"production": [
"since 2010"
],
"development": [
"since 2010"
]
}
}