-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.12 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
{
"name": "imdb-calendar",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write",
"lint": "eslint . --ext ts --ext tsx --ext js",
"test": "jest",
"test-all": "yarn lint && yarn type-check && yarn test",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@apollo/client": "^3.10.5",
"@apollo/server": "^4.10.4",
"@as-integrations/next": "^3.0.0",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@google-cloud/logging-bunyan": "^5.1.0",
"@graphql-tools/schema": "^10.0.4",
"@types/bunyan": "^1.8.11",
"bunyan": "^1.8.15",
"cookie": "^0.6.0",
"firebase": "^10.12.2",
"firebase-admin": "^12.1.1",
"graphql": "^16.8.2",
"graphql-tag": "^2.12.6",
"ical-generator": "^7.1.0",
"next": "14.2.4",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/runtime": "^7.24.7",
"@emotion/babel-plugin": "^11.11.0",
"@emotion/babel-preset-css-prop": "^11.11.0",
"@next/eslint-plugin-next": "^14.2.4",
"@tailwindcss/forms": "^0.5.7",
"@types/babel-plugin-macros": "^3",
"@types/cookie": "^0.6.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.6",
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"babel-jest": "^29.7.0",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-twin": "1.1.0",
"eslint": "^8.56.0",
"eslint-config-next": "^14.2.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.3",
"husky": "^9.0.11",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"tailwindcss": "^3.4.1",
"twin.macro": "^3.4.1",
"typescript": "5.4.5"
},
"babelMacros": {
"twin": {
"preset": "emotion"
}
}
}