-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.14 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
{
"name": "wme",
"version": "0.0.0",
"title": "WME (WordPress Made Easy) Monorepo",
"description": "Monorepo for the WME (WordPress Made Easy) ecosystem",
"homepage": "https://stellarwp.com/",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/moderntribe/wme.git"
},
"author": "Modern Tribe Incubator Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/moderntribe/wme/issues"
},
"workspaces": [
"packages/*",
"plugins/*",
"tooling/*"
],
"scripts": {
"build": "turbo run build",
"build:plugin": "turbo run build:plugin",
"clean": "pnpm -r --parallel exec rimraf dist .turbo tsconfig.tsbuildinfo",
"clean:hard": "pnpm -r --parallel exec rimraf dist .turbo node_modules && rm -rf node_modules",
"dev": "turbo run dev",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"preinstall": "npx only-allow pnpm",
"publish-packages": "turbo run build && changeset version && changeset publish",
"storybook": "turbo run storybook"
},
"peerDependencies": {
"@types/react": "^17.0.52",
"typescript": ">=4.3.0 <5.0.0"
},
"engines": {
"node": ">=14.0.0"
},
"packageManager": "[email protected]",
"dependencies": {
"@babel/plugin-syntax-flow": "^7.18.6",
"@babel/plugin-transform-react-jsx": "^7.20.13",
"@babel/preset-env": "^7.20.2",
"@babel/runtime": "^7.20.13",
"@changesets/cli": "^2.26.0",
"@moderntribe/eslint-config-custom": "workspace:0.1.0",
"@storybook/addon-actions": "^6.5.15",
"@storybook/addon-docs": "^6.5.15",
"@storybook/addon-essentials": "^6.5.15",
"@storybook/addon-interactions": "^6.5.15",
"@storybook/addon-links": "^6.5.15",
"@storybook/addons": "^6.5.15",
"@storybook/builder-webpack5": "^6.5.15",
"@storybook/manager-webpack5": "^6.5.15",
"@storybook/node-logger": "^6.5.15",
"@storybook/preset-create-react-app": "^4.1.2",
"@storybook/react": "^6.5.15",
"@storybook/testing-library": "^0.0.9",
"@storybook/theming": "^6.5.15",
"@types/react": "^17.0.53",
"eslint-config-turbo": "^0.0.3",
"prettier": "^2.8.3",
"rimraf": "^3.0.2",
"turbo": "^1.7.0",
"typescript": "^4.9.4"
}
}