-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·68 lines (68 loc) · 2.71 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·68 lines (68 loc) · 2.71 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
{
"name": "stage-ui",
"author": "Script Heads",
"version": "0.7.71",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"start": "yarn docs:start",
"build": "yarn version:up && yarn system:build && yarn icons:build && yarn core:build",
"pub": "yarn core:pub && yarn icons:pub && yarn system:pub",
"gen": "yarn icons:gen && yarn docs:gen",
"version:up": "node scripts/make",
"core:build": "cd ./packages/core && yarn build",
"core:pub": "cd ./build/core && npm publish --registry=https://registry.npmjs.org",
"icons:build": "cd ./packages/icons && yarn build",
"icons:pub": "cd ./build/icons && npm publish --registry=https://registry.npmjs.org",
"icons:gen": "cd ./packages/icons && yarn gen",
"system:build": "cd ./packages/system && yarn build",
"system:pub": "cd ./build/system && npm publish --registry=https://registry.npmjs.org",
"docs:start": "yarn workspace @stage-ui/docs start",
"docs:gen": "yarn workspace @stage-ui/docs gen",
"docs:build": "cd ./packages/docs && yarn build",
"docs:ios": "cd ./packages/docs-mobile && yarn ios",
"docs:android": "cd ./packages/docs-mobile && yarn android",
"testbed": "yarn workspace @stage-ui/testbed start",
"lint": "eslint --config .eslintrc.json --fix '**/*.+(ts|tsx)'"
},
"devDependencies": {
"@babel/cli": "7.17.6",
"@babel/core": "7.17.5",
"@babel/eslint-parser": "7.17.0",
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/plugin-proposal-object-rest-spread": "7.17.3",
"@babel/plugin-proposal-optional-chaining": "7.16.7",
"@babel/plugin-transform-runtime": "7.17.0",
"@babel/preset-env": "7.16.11",
"@babel/preset-react": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@emotion/babel-plugin": "11.7.2",
"@emotion/babel-preset-css-prop": "11.2.0",
"@types/node": "17.0.21",
"@types/react": "17.0.40",
"@types/react-dom": "17.0.13",
"@typescript-eslint/eslint-plugin": "5.14.0",
"@typescript-eslint/parser": "5.14.0",
"@vitejs/plugin-react": "1.2.0",
"@vitejs/plugin-react-refresh": "1.3.6",
"eslint": "8.10.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "16.1.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-no-for-of-loops": "1.0.1",
"eslint-plugin-no-function-declare-after-return": "1.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.29.3",
"eslint-plugin-react-hooks": "4.3.0",
"eslint-plugin-unused-imports": "2.0.0",
"prettier": "3.3.3",
"ts-node": "10.7.0",
"vite": "2.8.6",
"vite-plugin-svgr": "1.0.1"
}
}