-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
55 lines (55 loc) · 1.7 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
{
"name": "optioncharts.net",
"private": true,
"scripts": {
"postinstall": "next telemetry disable",
"dev": "next dev",
"build": "next build",
"build:export": "npm run build && npm run export",
"build:sitemap": "next-sitemap --config next-sitemap.config.js",
"build:ogImages": "next-static-og-images --width 667 --height 350 --deviceScaleFactor 1.8",
"postbuild": "npm run build:sitemap && npm run build:ogImages",
"export": "next export",
"start": "next start",
"lint": "next lint",
"lint-staged": "lint-staged",
"prepare": "husky install .husky",
"predeploy": "npm run build:export && echo www.optioncharts.net > ./out/CNAME && touch ./out/.nojekyll",
"deploy": "gh-pages -d out -t true"
},
"dependencies": {
"bootstrap": "^5.2.3",
"next": "^12.3.4",
"next-seo": "^5.15.0",
"nextjs-google-analytics": "^2.3.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-financial-charts": "^1.3.2",
"react-icons": "^4.8.0",
"react-option-charts": "^0.2.1",
"sass": "^1.59.3",
"use-immer": "^0.8.1"
},
"devDependencies": {
"@types/gtag.js": "^0.0.12",
"@types/node": "18.15.3",
"@types/react": "^17.0.53",
"autoprefixer": "^10.4.14",
"eslint": "8.36.0",
"eslint-config-next": "^12.3.4",
"gh-pages": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"next-sitemap": "^4.0.5",
"next-static-og-images": "^0.1.1",
"next-transpile-modules": "^9.0.0",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"tailwindcss": "^3.2.7",
"typescript": "4.9.5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,css,md}": "prettier --write"
}
}