-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
90 lines (90 loc) · 2.3 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
{
"name": "newtelco-tab",
"version": "1.0.0",
"author": "Nico Domino <[email protected]>",
"keywords": [
"intranet",
"dashboard",
"newtab"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ndom91/newtelco-tab.git"
},
"bugs": {
"url": "https://github.com/ndom91/newtelco-tab/issues"
},
"homepage": "https://portal.newtelco.de",
"scripts": {
"dev": "next dev",
"lint": "next lint",
"build": "NODE_ENV=production next build",
"start": "next start",
"type-check": "tsc -p tsconfig.json --noEmit"
},
"packageManager": "[email protected]",
"dependencies": {
"@radix-ui/react-popover": "^1.0.0",
"cmdk": "^0.1.16",
"faunadb": "^4.6.0",
"framer-motion": "^6.3.3",
"googleapis": "^100.0.0",
"graphql": "^16.5.0",
"graphql-request": "^4.3.0",
"next": "^12.2.4",
"next-auth": "^4.10.3",
"next-pwa": "^5.5.5",
"react": "18",
"react-dom": "18",
"react-tippy": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@svgr/webpack": "^6.3.1",
"@types/node": "^18.6.5",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"autoprefixer": "^10.4.8",
"babel-loader": "^8.2.5",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-styled-components": "^2.0.7",
"babel-plugin-twin": "^1.0.2",
"eslint": "^8.21.0",
"eslint-config-next": "^12.2.4",
"eslint-config-prettier": "^8.5.0",
"lint-staged": "^13.0.3",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"simple-git-hooks": "^2.8.0",
"styled-components": "^5.3.5",
"tailwindcss": "^3.1.8",
"twin.macro": "^2.8.2",
"typescript": "4.7"
},
"simple-git-hooks": {
"commit-msg": "npx --no-install commitlint --edit \"$1\"",
"pre-commit": "npx --no-install lint-staged"
},
"babelMacros": {
"twin": {
"preset": "styled-components"
}
},
"prettier": {
"semi": false,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "all"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}