-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 2.1 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
{
"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",
"check-types": "tsc",
"lint": "eslint --fix --ext .ts --ext .tsx ./mt-static/plugins/MTBlockEditor/src",
"test": "echo \"Error: no test specified\" && exit 1",
"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": "[email protected]",
"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",
"@types/bootstrap": "^5.0.1",
"@types/jquery": "^3.5.5",
"@types/jqueryui": "^1.12.13",
"@types/react": "^16.9.35",
"@types/tinymce": "^4.6.0",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"babel-loader": "^8.1.0",
"core-js": "^3.6.5",
"cypress": "^13.7.1",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"fs-extra": "^11.2.0",
"mt-block-editor-block": "^1.1.13",
"prettier": "^2.2.1",
"semver": "^5.7.1",
"typescript": "^4.0.5",
"typescript-json-schema": "^0.50.1",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"ajv": "^6.12.6"
}
}