-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
105 lines (105 loc) · 3.26 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "calendar-plus",
"private": true,
"description": "A browser extension for Google Calendar that provides insights into where your time goes. Includes power user tools, data export and customization",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/maxpatiiuk/calendar-stats.git"
},
"author": "Max Patiiuk",
"contributors": [
"EECS 581 Team 19 2022-2023"
],
"homepage": "https://github.com/maxpatiiuk/calendar-stats#readme",
"bugs": {
"url": "https://github.com/maxpatiiuk/calendar-stats/issues"
},
"scripts": {
"package": "npm run build && (cd .. && zip -FSr ../calendar-plus.zip . -x .github/\\* index.html .git/\\* src/node_modules/\\* backend/\\* .idea/\\* .vscode/\\*)",
"build": "npx webpack --mode production",
"watch": "npx webpack --mode development --watch",
"test": "npm run typeCheck && npm run unitTests",
"typeCheck": "tsc",
"unitTests": "jest",
"unitTests:coverage": "jest --coverage",
"unitTests:watch": "jest --watch"
},
"dependencies": {
"chart.js": "^4.4.2",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"typesafe-reducer": "^1.0.4"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/plugin-transform-modules-commonjs": "^7.24.1",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@maxxxxxdlp/eslint-config-react": "^3.0.0",
"@maxxxxxdlp/prettier-config": "^1.0.4",
"@maxxxxxdlp/stylelint-config": "^1.0.0",
"@rushstack/eslint-patch": "^1.10.2",
"@stylelint/postcss-css-in-js": "^0.38.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.2",
"@testing-library/user-event": "^14.5.2",
"@types/chrome": "^0.0.266",
"@types/gapi": "^0.0.47",
"@types/gapi.calendar": "^3.0.11",
"@types/gapi.client": "^1.0.8",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@types/react": "^18.2.78",
"@types/react-devtools": "^3.6.2",
"@types/react-dom": "^18.2.25",
"autoprefixer": "10.4.19",
"babel-loader": "^9.1.3",
"core-js": "^3.36.1",
"css-loader": "^7.1.1",
"eslint": "^9.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fail-on-console": "^3.2.0",
"jest-silent-reporter": "^0.5.0",
"jest-skipped-reporter": "^0.0.5",
"jsdom-global": "^3.0.2",
"loader-utils": "^3.2.1",
"node-notifier": "^10.0.1",
"postcss": "^8.4.38",
"postcss-import": "^16.1.0",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^9.5.5",
"prettier": "^3.2.5",
"react-devtools": "^5.0.2",
"regenerator-runtime": "^0.14.1",
"style-loader": "^4.0.0",
"stylelint": "^16.3.1",
"tailwindcss": "^3.4.3",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"browserslist": {
"production": [
"last 2 years",
"> 1% in US",
"not ie <= 11",
"not dead"
],
"development": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 1 Safari version"
]
},
"directories": {
"test": "tests"
},
"prettier": "@maxxxxxdlp/prettier-config"
}