-
-
Notifications
You must be signed in to change notification settings - Fork 298
/
package.json
105 lines (105 loc) · 3.69 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
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
{
"name": "react-md",
"private": true,
"version": "2.4.0",
"description": "The mono-repo for react-md",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"rmd-codemod": "node packages/codemod/bin/rmd-codemod.js",
"release": "dev-utils release",
"sandbox": "dev-utils sandbox",
"sassdoc": "dev-utils sassdoc",
"start": "yarn workspace documentation start-dev",
"dev": "npm-run-all -p watch start",
"setup": "npm-run-all build-dev-utils force-install build \"sandbox --empty\"",
"force-install": "yarn --force",
"combine-styles": "dev-utils combine-styles",
"styles": "dev-utils styles",
"variables": "dev-utils variables",
"run-indexer": "dev-utils doc-index",
"generate-typedoc": "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-codemod": "yarn workspace @react-md/codemod build",
"build": "npm-run-all styles combine-styles build-ejs build-cjs build-var build-codemod",
"typecheck": "tsc -p tsconfig.check.json",
"lint-scripts": "eslint \"packages/*/src/**/*.{ts,tsx,js,jsx}\"",
"lint-styles": "stylelint \"packages/*/src/**/*.scss\"",
"lint": "npm-run-all lint-scripts lint-styles typecheck",
"test": "jest",
"format": "prettier --write \"**/*.{ts,tsx,scss,js,jsx,md,yml,json}\"",
"clean": "dev-utils clean",
"clean-dev-utils": "yarn workspace @react-md/dev-utils clean",
"clean-all": "npm-run-all clean clean-dev-utils",
"watch": "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.16.8",
"@mlaursen/eslint-config": "^1.6.0",
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.4",
"@testing-library/react-hooks": "^7.0.1",
"@testing-library/user-event": "13.5.0",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.31",
"@types/prettier": "^2.6.0",
"@types/reach__router": "^1.3.10",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@types/react-test-renderer": "^17.0.1",
"chokidar": "^3.5.3",
"eslint": "^8.14.0",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"jest-watch-typeahead": "^1.0.0",
"lerna": "^4.0.0",
"lint-staged": "^12.4.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"react": "^17.0.2",
"react-dom": "^17.0.1",
"react-test-renderer": "^17.0.2",
"stylelint": "^14.8.1",
"stylelint-config-recommended": "^7.0.0",
"stylelint-config-standard": "^25.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-order": "^5.0.0",
"stylelint-scss": "^4.1.0",
"ts-jest": "^27.1.4",
"typescript": "^4.6.4"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"eslint -c .precommit.eslintrc.js --fix",
"prettier --write"
],
"**/*.{scss,js,jsx,md,yml,json}": [
"prettier --write"
]
},
"workspaces": [
"packages/*"
]
}