-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.93 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.93 KB
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
99
100
101
102
103
{
"name": "wpgravitybundle.com",
"private": true,
"description": "The frontend for the WPGravityBundle website.",
"version": "0.1.0",
"author": "@mosesintech",
"license": "0BSD",
"engines": {
"node": "18.x"
},
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"lint": "eslint '**/*.{js,jsx,ts,tsx}' --fix",
"pretty": "prettier '**/*.{js,jsx,ts,tsx}' --write",
"format": "npm run lint && npm run pretty",
"commit": "cz",
"start": "gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"prepare": "husky install"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"npm run format"
]
},
"dependencies": {
"gatsby": "^5.10.0",
"gatsby-plugin-gatsby-cloud": "^5.10.0",
"gatsby-plugin-image": "^3.0.0",
"gatsby-plugin-manifest": "^5.10.0",
"gatsby-plugin-offline": "^6.10.0",
"gatsby-plugin-react-svg": "^3.3.0",
"gatsby-plugin-sharp": "^5.10.0",
"gatsby-source-filesystem": "^5.10.0",
"gatsby-source-wordpress": "^7.4.0",
"gatsby-theme-headless-wordpress": "^0.1.14-beta.0",
"gatsby-transformer-sharp": "^5.10.0",
"graphql": "^16.6.0",
"html-react-parser": "^3.0.16",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.0.4",
"urql": "^4.0.4",
"wpgravitybundle": "^1.0.0-alpha.18"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"autoprefixer": "^10.4.14",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint-config-react-app": "^7.0.1",
"gatsby-plugin-postcss": "^6.10.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"tailwindcss": "^3.3.2"
},
"repository": {
"type": "git",
"url": "https://github.com/TotalityWorks/wpgravitybundle.com"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"types": {
"feat": {
"description": "A new feature",
"title": "Features"
},
"fix": {
"description": "A bug fix",
"title": "Bug Fixes"
},
"docs": {
"description": "Documentation only changes",
"title": "Documentation"
},
"style": {
"description": "Design & CSS changes.",
"title": "Styles"
},
"refactor": {
"description": "A code change that neither fixes a bug nor adds a feature",
"title": "Code Refactoring"
},
"test": {
"description": "Adding missing tests or correcting existing tests",
"title": "Tests"
},
"chore": {
"description": "Other changes that don't modify src or test files",
"title": "Chores"
}
}
}
}
}