-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
57 lines (57 loc) · 1.72 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
{
"name": "litmus-2.0",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -H 0.0.0.0",
"build": "next build",
"start": "next start",
"postbuild": "next-sitemap --config sitemap.config.js",
"lint": "eslint . --quiet --max-warnings 0",
"next-lint": "next lint",
"prettier": "prettier --check .",
"prettier-fix": "prettier --write .",
"blc": "blc http://localhost:3000 -ro --exclude 'linkedin' --exclude 'medium' --exclude 'lenskart' --exclude 'udemy' --exclude 'twitter' --exclude 'katacoda' --exclude 'figma' --exclude 'hub.litmuschaos'",
"test-blc": "npm-run-all -p -r start blc"
},
"dependencies": {
"@tailwindcss/aspect-ratio": "^0.2.1",
"moment": "^2.29.1",
"moment-timezone": "^0.5.38",
"next": "^12.2.5",
"next-seo": "^4.26.0",
"next-sitemap": "^1.6.148",
"raw-loader": "^4.0.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-markdown": "^8.0.3",
"react-slick": "^0.28.1",
"rehype-raw": "^6.1.1",
"sass": "^1.35.1",
"sharp": "^0.30.7",
"slick-carousel": "^1.8.1"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@next/bundle-analyzer": "^12.2.5",
"autoprefixer": "^10.2.6",
"axios": "^0.21.1",
"babel-loader": "^8.2.5",
"broken-link-checker": "^0.6.7",
"eslint": "7.30.0",
"eslint-config-next": "11.0.1",
"eslint-config-prettier": "^8.3.0",
"lint-staged": "^11.2.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.5",
"prettier": "2.3.2",
"tailwindcss": "^2.2.4",
"webpack": "^5.74.0"
},
"lint-staged": {
"*": "prettier --write",
"*.{js,jsx}": "eslint --cache --fix",
"*.{js,jsx,css,md}": "prettier --write"
}
}