-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.33 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
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "time-observer",
"version": "1.2.1",
"description": "A notifier for web usages",
"main": "dist/index.js",
"type": "module",
"scripts": {
"lint": "eslint --ext .ts,.tsx .",
"lint:fix": "eslint --ext .ts,.tsx --fix .",
"format": "prettier --write 'src/**/*.{js,ts,tsx,json}'",
"dev:node": "ts-node ./src/workers/background.ts",
"build": "vite build && node ./src/utils/manifest-generator.js",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SeiwonPark/time-observer.git"
},
"keywords": [
"notification",
"notifier",
"chrome-extension",
"time",
"tracking",
"tracker",
"usage"
],
"authors": [
"Seiwon Park <[email protected]>",
"Yaehee Choe <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/SeiwonPark/time-observer/issues"
},
"homepage": "https://github.com/SeiwonPark/time-observer#readme",
"dependencies": {
"chart.js": "^4.3.3",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-contribution-calendar": "^1.4.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.14.2",
"styled-components": "^6.0.7",
"vite-plugin-css-injected-by-js": "^3.3.0",
"vite-tsconfig-paths": "^4.2.0"
},
"devDependencies": {
"@swc/plugin-styled-components": "^1.5.72",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/chrome": "^0.0.241",
"@types/eslint": "^8.44.0",
"@types/glob": "^8.1.0",
"@types/node": "^20.4.3",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"@vitejs/plugin-react": "^4.0.3",
"@vitejs/plugin-react-refresh": "^1.3.6",
"@vitejs/plugin-react-swc": "^3.3.2",
"@vitest/coverage-v8": "^0.33.0",
"eslint": "^8.45.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.0",
"happy-dom": "^10.5.2",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"vite": "^4.4.7",
"vite-plugin-svgr": "^3.2.0",
"vitest": "^0.33.0"
}
}