-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.5 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
{
"name": "mt-block-editor-block-oembed",
"version": "1.3.0",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"build": "vite build",
"start": "vite",
"dev": "vite",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"check-types": "tsc",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"format": "prettier --write .",
"format:check": "prettier --check .",
"cypress:open": "npm run build && cypress open",
"cypress:run": "npm run build && cypress run"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:fix && npm run check-types && npm run build"
}
},
"author": "Taku Amano <tamano@sixapart.com>",
"devDependencies": {
"@eslint/js": "^9.7.0",
"@types/node": "^22.0.0",
"@types/react": "^16.14.68",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"cypress": "^14.5.1",
"eslint": "9.7",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"husky": "^3.1.0",
"i18next-parser": "^9.3.0",
"mt-block-editor-block": "^1.3.0",
"postcss": "^8.5.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^16.1.1",
"postcss-nested": "^7.0.2",
"postcss-preset-env": "^10.2.4",
"prettier": "^3.8.1",
"terser": "^5.46.1",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-svg-loader": "^5.1.0",
"vitest": "^4.1.2"
}
}