-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
95 lines (95 loc) · 2.66 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
{
"name": "@uzh-bf/joinus",
"description": "Overview of IT Projects and Positions at the Dept. of Banking and Finance, University of Zurich",
"homepage": "https://uzh-bf.github.io/joinus/",
"version": "3.0.5",
"repository": {
"type": "git",
"url": "https://github.com/uzh-bf/joinus"
},
"maintainers": [
"Manuel Keller <[email protected]>",
"Roland Schlaefli <[email protected]>"
],
"scripts": {
"clean": "rimraf node_modules/.cache out/ .next/",
"dev": "npm-run-all --parallel dev:tailwind dev:next",
"dev:next": "next dev",
"dev:tailwind": "tailwindcss -i ./src/globals.css -o ./src/tailwind.css --watch",
"build": "cross-env NODE_ENV=production next build",
"export": "cross-env NODE_ENV=production next export",
"build:semantic": "cd src/semantic && gulp build-css build-assets",
"deploy": "npm-run-all build:semantic build",
"start": "next start",
"check": "npm-run-all --parallel check:ts format:ci lint",
"check:ts": "tsc",
"check:fix": "npm-run-all check:ts format lint:fix",
"format": "prettier --write \"src/**/*.(js|ts|tsx|graphql|json)\" \"*.(js|ts)\"",
"format:ci": "prettier --list-different \"src/**/*.(js|ts|tsx|graphql|json)\" \"*.(js|ts)\"",
"lint": "eslint --ext .js,.ts,.tsx src/",
"lint:fix": "eslint --fix --ext .js,.ts,.tsx src/",
"release": "standard-version"
},
"dependencies": {
"@heroicons/react": "2.0.11",
"@popperjs/core": "2.11.6",
"animated-scroll-to": "2.3.0",
"fomantic-ui": "2.8.8",
"next": "12.3.1",
"react": "17.0.2",
"react-burger-menu": "3.0.8",
"react-dom": "17.0.2",
"semantic-ui-react": "2.1.3"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "0.4.2",
"@tailwindcss/forms": "0.5.3",
"@tailwindcss/typography": "0.5.7",
"@types/react": "17.0.38",
"@uzh-bf/code-style-react-ts": "0.0.13",
"cross-env": "7.0.3",
"eslint-config-next": "12.3.1",
"npm-run-all": "^4.1.5",
"postcss": "8.4.17",
"rimraf": "3.0.2",
"standard-version": "9.5.0",
"tailwindcss": "3.1.8",
"typescript": "4.8.4"
},
"standard-version": {
"types": [
{
"type": "docs",
"section": "Documentation"
},
{
"type": "enhance",
"section": "Enhancements"
},
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "refactor",
"section": "Refactors"
},
{
"type": "chore"
},
{
"type": "build"
},
{
"type": "ci"
}
]
},
"volta": {
"node": "16.13.2"
}
}