forked from mlaursen/react-md
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 4.2 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 4.2 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "react-md-monorepo",
"private": true,
"version": "2.4.0",
"description": "The mono-repo for react-md",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"cz": "cz",
"release": "yarn workspace @react-md/dev-utils dev-utils release",
"sandbox": "yarn workspace @react-md/dev-utils dev-utils sandbox",
"sassdoc": "yarn workspace @react-md/dev-utils dev-utils sassdoc",
"start": "yarn workspace documentation start-dev",
"dev": "npm-run-all -p watch start",
"setup": "npm-run-all build-dev-utils build \"sandbox --empty\"",
"styles": "yarn workspace @react-md/dev-utils dev-utils styles",
"variables": "yarn workspace @react-md/dev-utils dev-utils variables",
"run-indexer": "yarn workspace @react-md/dev-utils dev-utils doc-index",
"generate-typedoc": "yarn workspace @react-md/dev-utils dev-utils typedoc",
"build-docs-meta": "npm-run-all sandbox sassdoc run-indexer generate-typedoc",
"build-docs": "yarn workspace documentation build",
"build-website": "npm-run-all build-docs-meta build-docs",
"build-dev-utils": "yarn workspace @react-md/dev-utils build",
"build-ejs": "tsc -b tsconfig.ejs.json",
"build-cjs": "tsc -b tsconfig.cjs.json",
"build-var": "tsc -b tsconfig.var.json",
"build-umd": "yarn workspace react-md umd --silent",
"build": "npm-run-all styles build-ejs build-cjs build-var",
"typecheck": "tsc -p tsconfig.check.json",
"lint-scripts": "eslint \"packages/*/src/**/*.{ts,tsx,js,jsx}\"",
"lint-styles": "sass-lint -c .sass-lint.yml -v",
"lint": "npm-run-all lint-scripts lint-styles typecheck",
"test": "jest",
"format-examples": "prettier --write \"examples/*/src/**/*.{js,jsx,ts,tsx,scss}\"",
"format-root": "prettier --write \"*.{js,ts,md}\" \"{.github,testSetup}/*\"",
"format-pkgs": "prettier --write \"packages/*/{src,components,constants,hooks,pages,scripts,server,utils}/**/*.{ts,tsx,scss,js,jsx,md}\"",
"format": "npm-run-all format-root format-pkgs format-examples",
"clean": "dev-utils clean",
"clean-dev-utils": "yarn workspace @react-md/dev-utils clean",
"clean-all": "npm-run-all clean clean-dev-utils",
"watch": "yarn workspace @react-md/dev-utils dev-utils watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mlaursen/react-md.git"
},
"author": "Mikkel Laursen <mlaursen03@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mlaursen/react-md/issues"
},
"homepage": "https://react-md.dev",
"devDependencies": {
"@babel/plugin-transform-typescript": "^7.14.6",
"@mlaursen/eslint-config": "^1.1.4",
"@testing-library/dom": "^8.1.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.1",
"@testing-library/user-event": "13.2.0",
"@types/fs-extra": "^9.0.12",
"@types/glob": "^7.1.4",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.171",
"@types/node": "^15.14.0",
"@types/node-sass": "^4.11.2",
"@types/prettier": "^2.3.2",
"@types/reach__router": "^1.3.9",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@types/react-router": "^5.1.16",
"@types/react-router-dom": "^5.1.8",
"@types/react-test-renderer": "^17.0.1",
"@types/react-transition-group": "^4.4.2",
"chokidar": "^3.5.2",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.31.0",
"husky": "^7.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-watch-typeahead": "^0.6.4",
"lerna": "^4.0.0",
"lint-staged": "^11.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.1",
"react-test-renderer": "^17.0.2",
"sass-lint": "^1.13.1",
"ts-jest": "^26.5.6",
"typescript": "^4.3.5"
},
"lint-staged": {
"**/*.{js,jsx,md}": [
"prettier --write"
],
"{.github,testSetup}/*": [
"prettier --write"
],
"packages/*/src/**/*.{ts,tsx,scss,js,jsx}": [
"prettier --write"
]
},
"workspaces": [
"packages/*"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"packageManager": "yarn@3.5.0"
}