-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.9 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.9 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
{
"name": "@flex-development/mdjsx-root",
"description": "Parse MDX and transpile to JSX via utility function or API endpoint. Optionally compile JSX with Buble.",
"keywords": [
"buble-jsx-only",
"lerna",
"mdx",
"serverless function",
"typescript",
"vercel"
],
"homepage": "https://github.com/flex-development/mdjsx",
"repository": "git://github.com/flex-development/mdjsx.git",
"bugs": {
"url": "https://github.com/flex-development/mdjsx/issues",
"email": "developers@flexdevelopment.llc"
},
"license": "BSD-3-Clause",
"author": {
"name": "Lexus Drumgold",
"email": "lex@flexdevlopment.llc",
"url": "https://flexdevelopment.llc"
},
"scripts": {
"rm:vercel": "rm -rf .vercel && mkdir .vercel",
"clean": "lerna clean --yes; rm -rf node_modules/ || true; yarn",
"prepare": "lerna run prepare; lerna link",
"format": "prettier --write \"./\"",
"lint": "eslint . --ext js,ts --fix --cache",
"predev:api": "yarn rm:vercel",
"dev:api": "cp ~/.vercel/mdjsx.json .vercel/project.json; vc dev -l 8080",
"test:core": "lerna run test:quiet --scope @flex-development/mdjsx",
"test": "run-p test:*"
},
"dependencies": {
"@commitlint/format": "^11.0.0"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-export-default-from": "^7.12.1",
"@babel/plugin-proposal-export-namespace-from": "^7.12.1",
"@babel/plugin-proposal-throw-expressions": "^7.12.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/config-lerna-scopes": "^11.0.0",
"@types/jest": "^24.0.0",
"@types/lodash": "^4.14.167",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"@zerollup/ts-transform-paths": "^1.7.18",
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-pure-calls-annotation": "^0.3.1",
"dotenv-cli": "^4.0.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-tree-shaking": "^1.8.0",
"husky": "^4.3.0",
"jest": "^27.0.0-next.2",
"lerna": "^3.22.1",
"lint-staged": "^10.5.2",
"npm": "^6.14.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"regenerator-runtime": "^0.13.5",
"replace-in-file": "^6.1.0",
"shx": "^0.3.2",
"ts-jest": "^27.0.0-next.3",
"ts-node-dev": "^1.1.1",
"ttypescript": "^1.5.12",
"typescript": "^4.2.0-beta",
"yarn": "^1.22.10"
},
"resolutions": {},
"private": true,
"workspaces": [
"packages/*"
]
}