-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·62 lines (62 loc) · 1.84 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
{
"name": "root",
"private": true,
"description": "Gatsby theme that uses joy ui under the hood and has customized components to work with Gatsby.",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "yarn workspace docs-example build",
"start": "yarn workspace docs-example start",
"serve": "yarn workspace docs-example serve",
"clean": "yarn workspace docs-example clean",
"build:joytheme": "lerna run --scope \"gatsby-theme-joy-ui\" build",
"start:joytheme": "lerna run --scope \"gatsby-theme-joy-ui\" start",
"watch:joytheme": "npm run start:joytheme",
"develop:joytheme": "npm run start:joytheme",
"format": "prettier --write 'src/**/*.{js,jsx,json,ts,tsx,md}'",
"test": "lerna run test",
"prepare": "lerna run prepare",
"semantic-release": "lerna run --scope \"gatsby-theme-joy-ui\" semantic-release"
},
"workspaces": [
"apps/*",
"packages/*"
],
"keywords": [
"joy",
"joyui",
"joy-ui",
"ui",
"gatsby",
"plugin",
"gatsby-plugin",
"gatsby-theme"
],
"author": "Trent S. (https://www.linkedin.com/in/trentschnee/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/trentschnee/gatsby-theme-joy-ui/issues"
},
"homepage": "https://github.com/trentschnee/gatsby-theme-joy-ui#readme",
"dependencies": {
"gatsby": "^5.0.0",
"react": "^18.2.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.2.3",
"@types/react-test-renderer": "^18.0.0",
"babel-preset-gatsby-package": "^3.0.0",
"jest": "^29.3.1",
"lerna": "^6.3.0",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.0.3",
"typescript": "^4.6.3"
},
"repository": {
"type": "git",
"url": "https://github.com/trentschnee/gatsby-theme-joy-ui.git"
}
}