-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
54 lines (54 loc) · 1.58 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
{
"name": "operate-first",
"version": "1.0.0",
"private": true,
"description": "operate-first",
"author": "bryanmontalvan",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build --prefix-paths",
"serve": "gatsby serve",
"clean": "gatsby clean",
"gh-pages": "gh-pages -d public",
"deploy": "npm run build && npm run gh-pages -- -m 'Updates: Manual build'",
"format": "prettier -w 'src/**/*.{ts,js}'",
"lint": "prettier --check 'src/**/*.{ts,js}'; eslint src --ext .ts,.js"
},
"dependencies": {
"@lekoarts/gatsby-theme-minimal-blog-core": "4.1.8",
"@mantine/core": "4.2.12",
"@mantine/hooks": "4.2.12",
"@mantine/prism": "4.2.12",
"gatsby": "4.25.7",
"gatsby-plugin-catch-links": "4.25.0",
"gatsby-plugin-google-gtag": "4.25.0",
"gatsby-plugin-manifest": "4.25.0",
"gatsby-plugin-mantine": "4.0.0",
"gatsby-plugin-react-helmet": "5.25.0",
"gatsby-remark-prismjs": "6.25.0",
"prism-react-renderer": "1.3.5",
"prism-themes": "1.9.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-helmet": "6.1.0",
"tabler-icons-react": "1.56.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.59.8",
"@typescript-eslint/parser": "5.59.8",
"eslint": "8.42.0",
"eslint-config-prettier": "8.8.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"gh-pages": "5.0.0",
"prettier": "2.8.8"
},
"prettier": {
"singleQuote": true
}
}