forked from AmirhBeigi/persian-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.99 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
{
"name": "persian-data",
"version": "1.0.0",
"private": true,
"description": "persian-data",
"author": "Amirhossein",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"spell": "cspell ./* --no-progress",
"format": "prettier --write *.{js,ts,tsx,json,md,yml,yaml,css,scss,less,graphql,html}",
"postinstall": "husky install",
"commit": "cz",
"pre-commit": "lint-staged",
"deploy": "gatsby build --prefix-paths && gh-pages -d public"
},
"dependencies": {
"@mdx-js/react": "^2.1.3",
"clsx": "^1.2.1",
"gatsby": "^4.21.1",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-manifest": "^4.21.0",
"gatsby-plugin-mdx": "^4.0.0",
"gatsby-plugin-sitemap": "^5.21.0",
"gatsby-source-filesystem": "^4.21.1",
"react": "^18.1.0",
"react-csv": "^2.2.2",
"react-dom": "^18.1.0",
"react-json-syntax-highlighter": "^0.1.17"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.0.3",
"@types/node": "^17.0.45",
"@types/react": "^18.0.17",
"@types/react-csv": "^1.1.3",
"@types/react-dom": "^18.0.6",
"autoprefixer": "^10.4.8",
"commitizen": "^4.2.5",
"cspell": "^6.7.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.22.0",
"eslint-config-react-app": "^7.0.1",
"gatsby-plugin-postcss": "^5.21.0",
"gatsby-plugin-tsconfig-paths": "^1.0.5",
"gh-pages": "^4.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"tailwindcss": "^3.1.8",
"typescript": "^4.7.4"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"eslint --ignore-path .gitignore --fix",
"prettier --ignore-path .gitignore --write"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}