-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.94 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
96
97
98
{
"private": true,
"name": "iconsbox-website",
"description": "Iconsbox official website",
"version": "1.1.7",
"author": "JafarRezaei",
"license": "MIT",
"starter-name": "gatsby-starter-minimal-blog",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"deploy": "gatsby build && gh-pages -d public -r https://$GH_TOKEN@github.com/iconsbox/website",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"develop:cypress": "cross-env CYPRESS_SUPPORT=y yarn develop",
"build:cypress": "cross-env CYPRESS_SUPPORT=y yarn build",
"test": "echo \"Will write tests! :) -> https://gatsby.dev/unit-testing\"",
"start": "gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean"
},
"dependencies": {
"@iconbox/alexandra": "latest",
"@iconbox/clothes": "latest",
"@iconbox/config": "latest",
"@iconbox/eid": "latest",
"@iconbox/emoji": "latest",
"@iconbox/eva": "latest",
"@iconbox/fa4": "latest",
"@iconbox/fa5": "latest",
"@iconbox/feather": "latest",
"@iconbox/foundation": "latest",
"@iconbox/icomoon": "latest",
"@iconbox/iconly": "latest",
"@iconbox/ion": "latest",
"@iconbox/linear": "latest",
"@iconbox/material": "latest",
"@iconbox/oct": "latest",
"@iconbox/rainbow": "latest",
"@iconbox/snappmarket": "latest",
"@iconbox/support": "latest",
"@iconbox/tabler": "latest",
"@iconbox/weather": "latest",
"@lekoarts/gatsby-theme-minimal-blog": "^2.4.0",
"@n8tb1t/use-scroll-position": "^1.0.47",
"gatsby": "^2.24.3",
"gatsby-plugin-google-gtag": "^3.7.1",
"gatsby-plugin-manifest": "^2.4.18",
"gatsby-plugin-mdx": "latest",
"gatsby-plugin-netlify": "^2.3.11",
"gatsby-plugin-offline": "^3.2.18",
"gatsby-plugin-sitemap": "^2.4.11",
"gatsby-plugin-typography": "^2.5.10",
"gh-pages": "^3.1.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-typography": "^0.16.19",
"recoil": "^0.0.13",
"typeface-inter": "^3.15.0",
"typeface-lalezarregular": "^1.0.1",
"typeface-vazir": "^1.0.1",
"typeface-yekan": "^1.0.11",
"typography": "^0.16.19",
"use-scroll-position": "^0.0.4"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2",
"eslint": "^7.4.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-webpack": "^0.12.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8"
},
"moduleRoots": [
"app"
],
"lint-staged": {
"*.js": [
"eslint --fix",
"git add --force"
],
"*.json": [
"prettier --write",
"git add --force"
]
},
"pre-commit": "lint:staged",
"eslintIgnore": [
"*.test.js",
"*.config.js",
"internals"
]
}