-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.45 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.45 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
{
"name": "mt-plugin-mtblockeditor",
"version": "1.0.0",
"description": "This is a plugin for the Movable Type. This plugin enables you to use Movable Type Block Editor.",
"main": "",
"scripts": {
"build-schema": "typescript-json-schema --noExtraProps mt-static/plugins/MTBlockEditor/src/@types/block.d.ts MTBlockEditor.Serialize.Block > mt-static/plugins/MTBlockEditor/src/schemas/block.json",
"build": "npm run build-schema && webpack --mode=production",
"start": "webpack --mode=development --watch",
"lint": "tsc && eslint mt-static/plugins/MTBlockEditor/src",
"lint:fix": "eslint --fix mt-static/plugins/MTBlockEditor/src",
"format": "prettier --check --cache \"eslint.config.mjs\" \"mt-static/plugins/MTBlockEditor/src/**/*.{ts,tsx}\"",
"format:fix": "prettier --write --cache --cache-strategy metadata \"eslint.config.mjs\" \"mt-static/plugins/MTBlockEditor/src/**/*.{ts,tsx}\"",
"test": "vitest",
"cypress:prepare": "node ./tools/cypress-prepare",
"cypress:open": "npm run cypress:prepare && npm run build && cypress open",
"cypress:run": "npm run cypress:prepare && npm run build && cypress run"
},
"author": "tamano@sixapart.com",
"license": "",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-logical-assignment-operators": "^7.12.1",
"@babel/plugin-proposal-private-methods": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.12.1",
"@eslint/js": "^9.21.0",
"@types/bootstrap": "^5.0.1",
"@types/jquery": "^3.5.5",
"@types/jqueryui": "^1.12.13",
"@types/react": "^16.9.35",
"@types/tinymce": "^4.6.9",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"babel-loader": "^8.1.0",
"core-js": "^3.6.5",
"cypress": "^13.7.1",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.3",
"eslint-plugin-react": "^7.37.4",
"fs-extra": "^11.2.0",
"jsdom": "^25.0.1",
"mt-block-editor-block": "^1.1.18",
"prettier": "^3.5.3",
"semver": "^5.7.1",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.0",
"typescript-json-schema": "^0.65.1",
"vitest": "^3.1.3",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"ajv": "^6.12.6"
}
}