-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathpackage.json
65 lines (65 loc) · 1.95 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
{
"name": "google-calendar-hours",
"repository": {
"type": "git",
"url": "git+https://github.com/aronwoost/google-calendar-hours.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/aronwoost/google-calendar-hours/issues"
},
"homepage": "https://google-calendar-hours.com/",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "NEXT_PUBLIC_REDIRECT_URI=http://test.com jest src",
"test:coverage": "NEXT_PUBLIC_REDIRECT_URI=http://test.com jest src --collectCoverage",
"lint": "eslint .",
"lint:css": "stylelint 'src/**/*.css'",
"prettier": "prettier --write .",
"prettier:check": "prettier --check ."
},
"dependencies": {
"@reduxjs/toolkit": "^2.0.1",
"bootstrap": "^5.3.2",
"classnames": "^2.5.1",
"dayjs": "^1.11.10",
"next": "14.2.21",
"qss": "^3.0.0",
"react": "^18",
"react-dom": "^18",
"react-redux": "^9.0.4"
},
"devDependencies": {
"@babel/eslint-parser": "^7.23.3",
"@babel/preset-env": "^7.23.8",
"@babel/preset-react": "^7.23.3",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"babel-jest": "^29.7.0",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^5.1.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"msw": "^2.0.13",
"prettier": "^3.2.1",
"react-test-renderer": "^18.2.0",
"stylelint": "^16.1.0",
"stylelint-config-idiomatic-order": "^10.0.0",
"stylelint-config-standard": "^36.0.0",
"timekeeper": "^2.3.1",
"typescript": "^5",
"undici": "^6.11.1",
"webpack-stats-plugin": "^1.1.3"
}
}