-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
69 lines (69 loc) · 1.86 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
{
"name": "elixir-cloud-aai",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build:dev": "next build",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint-fix": "eslint ./ --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css,scss,json,md}\"",
"prepare": "husky install",
"pre-commit": "lint-staged",
"postbuild": "next-sitemap"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@notionhq/client": "^2.2.15",
"axios": "^1.7.3",
"dayjs": "^1.10.7",
"elixir-cloud-aai": "file:.",
"global": "^4.4.0",
"globals": "^15.9.0",
"next": "^14.2.13",
"next-pwa": "^5.6.0",
"next-seo": "^6.5.0",
"next-sitemap": "^4.2.3",
"react": "^18.3.1",
"react-awesome-reveal": "^4.2.5",
"react-content-loader": "^7.0.2",
"react-dom": "^18.3.1",
"react-icons": "^5.0.1",
"react-text-transition": "^3.1.0",
"react-tiny-popover": "^8.0.4",
"react-twitter-embed": "^4.0.4",
"vanilla-cookieconsent": "^3.0.1"
},
"devDependencies": {
"@types/node": "^22.2.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.3.7",
"eslint": "9.9.0",
"eslint-config-next": "^14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-check-file": "^2.8.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.1.4",
"lint-staged": "^15.2.9",
"postcss": "^8.3.9",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.9",
"typescript": "^5.5.4"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged"
}
}
}