-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
117 lines (117 loc) · 4.47 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
106
107
108
109
110
111
112
113
114
115
116
117
{
"private": true,
"name": "atjson",
"devDependencies": {
"@babel/core": "7.26.10",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/preset-env": "7.26.9",
"@babel/preset-react": "7.26.3",
"@babel/preset-typescript": "7.26.0",
"@ckeditor/ckeditor5-build-classic": "37.0.1",
"@ckeditor/ckeditor5-engine": "35.3.2",
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@condenast/perf-kit": "0.1.4",
"@types/chance": "1.1.6",
"@types/entities": "2.0.2",
"@types/jest": "29.5.14",
"@types/jsdom": "21.1.7",
"@types/markdown-it": "12.2.3",
"@types/minimist": "1.2.5",
"@types/node": "18.19.80",
"@types/parse5": "6.0.3",
"@types/prettier": "2.7.3",
"@types/react": "18.2.70",
"@types/react-dom": "18.2.22",
"@types/sax": "1.2.7",
"@types/wordpress__shortcode": "2.3.6",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"babel-jest": "29.7.0",
"chance": "1.1.12",
"commonmark": "0.31.2",
"commonmark-spec": "0.31.2",
"conventional-changelog-core": "4.2.4",
"eslint": "8.57.1",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jsdom": "21.1.2",
"lerna": "6.6.2",
"lint-staged": "13.3.0",
"markdown-it": "14.1.0",
"minimist": "1.2.8",
"prettier": "2.8.8",
"react": "17.0.2",
"react-dom": "17.0.2",
"ts-loader": "9.5.2",
"typescript": "5.7.3",
"uuid-random": "1.3.2"
},
"dependencies": {
"@atjson/document": "file:packages/@atjson/document",
"@atjson/hir": "file:packages/@atjson/hir",
"@atjson/offset-annotations": "file:packages/@atjson/offset-annotations",
"@atjson/react": "file:packages/@atjson/react",
"@atjson/renderer-commonmark": "file:packages/@atjson/renderer-commonmark",
"@atjson/renderer-graphviz": "file:packages/@atjson/renderer-graphviz",
"@atjson/renderer-hir": "file:packages/@atjson/renderer-hir",
"@atjson/renderer-html": "file:packages/@atjson/renderer-html",
"@atjson/renderer-plain-text": "file:packages/@atjson/renderer-plain-text",
"@atjson/renderer-react": "file:packages/@atjson/renderer-react",
"@atjson/renderer-webcomponent": "file:packages/@atjson/renderer-webcomponent",
"@atjson/source-ckeditor": "file:packages/@atjson/source-ckeditor",
"@atjson/source-commonmark": "file:packages/@atjson/source-commonmark",
"@atjson/source-gdocs-paste": "file:packages/@atjson/source-gdocs-paste",
"@atjson/source-html": "file:packages/@atjson/source-html",
"@atjson/source-mobiledoc": "file:packages/@atjson/source-mobiledoc",
"@atjson/source-prism": "file:packages/@atjson/source-prism",
"@atjson/source-url": "file:packages/@atjson/source-url",
"@atjson/source-wordpress-shortcode": "file:packages/@atjson/source-wordpress-shortcode",
"@atjson/util": "file:packages/@atjson/util"
},
"scripts": {
"build": "tsc -b packages/**/* --verbose && tsc -b packages/@atjson/**/tsconfig.modules.json --verbose",
"clean": "tsc -b packages/**/* --clean && tsc -b packages/@atjson/**/tsconfig.modules.json --clean",
"lint": "eslint packages/**/src/*.ts packages/**/test/*.ts",
"lint-fix": "eslint packages/**/src/*.ts packages/**/test/*.ts --fix",
"prepublishOnly": "rm -rf packages/@atjson/**/dist && npm run build",
"lerna-publish": "lerna publish --conventional-graduate",
"lerna-prerelease": "lerna publish --dist-tag dev --preid dev --conventional-prerelease",
"test": "./node_modules/jest/bin/jest.js",
"typecheck": "tsc -b packages/**/* --force",
"anonymize-fixtures": "npx ts-node ./perf-kit/anonymize-fixtures.ts",
"perf": "npx ts-node ./perf-kit/index.ts profile --out current",
"perf:baseline": "npx ts-node ./perf-kit/index.ts profile --out baseline",
"perf:tstat": "npx ts-node ./perf-kit/index.ts compare baseline current",
"prepare": "husky install"
},
"workspaces": [
"packages/@atjson/*"
],
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"d.ts"
],
"moduleNameMapper": {
"^(@atjson/.*)$": "<rootDir>/packages/$1/src/index.ts"
},
"transformIgnorePatterns": [
"/node_modules/(?!@ckeditor).+\\.js$"
]
},
"lint-staged": {
"*.{ts,tsx,css,js,jsx,json,md}": [
"prettier --write",
"git add"
]
}
}