-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.38 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
{
"name": "root",
"private": true,
"description": "> TODO: description",
"author": "Ben McAlindin <bmcalindin@faculty.ai>",
"homepage": "https://github.com/neb42/ui-studio#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/neb42/ui-studio.git"
},
"workspaces": [
"docs",
"packages/builder",
"packages/builder/client",
"packages/create-ui-studio",
"packages/create-uis-template",
"packages/render-engine",
"packages/templates/example",
"packages/types",
"packages/typescript"
],
"scripts": {
"lerna": "lerna",
"build": "lerna run build --ignore @ui-studio/docs",
"deploy:docs": "lerna run --scope @ui-studio/docs deploy",
"deploy": "yarn build && lerna publish",
"deploy:prepatch": "yarn build && lerna publish prepatch",
"deploy:patch": "yarn build && lerna publish patch",
"deploy:minor": "yarn build && lerna publish minor",
"deploy:major": "yarn build && lerna publish major",
"deploy:prepatch:ci": "yarn build && lerna publish prepatch --yes --no-verify-access",
"deploy:patch:ci": "yarn build && lerna publish patch --yes --no-verify-access",
"deploy:minor:ci": "yarn build && lerna publish minor --yes --no-verify-access",
"deploy:major:ci": "yarn build && lerna publish major --yes --no-verify-access"
},
"devDependencies": {
"@mui/styled-engine": "npm:@mui/styled-engine-sc@latest",
"@faculty/eslint-config-base": "^0.0.104",
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.7.0",
"eslint-import-resolver-webpack": "^0.12.2",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.4",
"lerna": "^3.22.1",
"openapi-types": "^9.3.0",
"prettier": "^2.0.5",
"prettier-eslint": "^11.0.0",
"prettycli": "^1.4.3",
"typescript": "^4.2.4"
},
"resolutions": {
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@mui/styled-engine": "npm:@mui/styled-engine-sc@latest",
"prettier": "2.0.5",
"prettier-eslint": "11.0.0"
}
}