-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.99 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.99 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
{
"name": "brix-ui",
"version": "1.0.0",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"start": "start-storybook -s public",
"format": "prettier --check packages/**/*.{ts,tsx}",
"lint": "eslint --quiet --color packages/**/*.{ts,tsx}",
"typecheck": "tsc -p ./tsconfig.ci.json",
"prebuild:root": "rimraf packages/*/{lib,*.tsbuildinfo} dist",
"prebuild:local": "lerna run prebuild",
"prebuild": "npm-run-all -p prebuild:root prebuild:local",
"build:dts": "tsc -b tsconfig.build.json",
"build:js": "lerna exec -- babel src --out-dir lib --extensions .ts,.tsx --copy-files --root-mode upward",
"build:storybook": "build-storybook --quiet -o dist",
"build": "npm-run-all -s build:dts -p build:js build:storybook",
"pretest": "npm-run-all -p format lint typecheck",
"test": "jest",
"ci": "npm-run-all -s build test",
"bump": "lerna version --yes --tag-version-prefix=''",
"deploy": "gh-pages -d dist -r https://${GH_TOKEN}@github.com/uStudioTeam/brix-ui",
"prerelease": "node scripts/create-meta-files.js",
"release": "lerna exec -- yarn publish lib --non-interactive",
"cd": "npm-run-all -p deploy release"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.12.5",
"@babel/preset-typescript": "^7.12.1",
"@storybook/addon-essentials": "^6.0.3",
"@storybook/react": "^6.0.3",
"@svgr/webpack": "^5.4.0",
"@testing-library/react": "^10.4.8",
"@testing-library/react-hooks": "^3.4.1",
"@types/jest": "^26.0.9",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"babel-plugin-polished": "^1.1.0",
"babel-plugin-styled-components": "^1.11.1",
"babel-preset-react-app": "^9.1.2",
"copyfiles": "^2.4.0",
"eslint": "^7.5.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.10.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-immutable": "^1.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.7",
"eslint-plugin-sonarjs": "^0.5.0",
"eslint-plugin-unicorn": "^20.1.0",
"gh-pages": "^3.1.0",
"jest": "^26.3.0",
"jest-styled-components": "^7.0.3",
"lerna": "^3.22.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"react-test-renderer": "^16.13.1",
"rimraf": "^3.0.2",
"storybook-addon-jsx": "^7.3.4",
"styled-components": "^5.1.1",
"ts-jest": "^26.2.0",
"tsconfig-paths-jest": "^0.0.1",
"typescript": "^4.0.2"
}
}