-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 912 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 912 Bytes
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
{
"name": "mextmock-ui",
"private": true,
"type": "module",
"license": "Apache-2.0",
"main": "./static/index.js",
"types": "./static/index.d.ts",
"scripts": {
"build:types": "tsc -p tsconfig.json",
"build:code": "node esbuild.config.js",
"build": "npm run build:types && npm run build:code",
"watch:types": "tsc -p tsconfig.json --watch",
"watch:code": "node esbuild.config.js --watch",
"start": "npm-run-all --parallel watch:types watch:code"
},
"files": [
"./static"
],
"dependencies": {
"@mpt-extension/sdk": "^0.0.1",
"@mpt-extension/sdk-react": "^0.0.1",
"axios": "^1.10.0",
"esbuild-sass-plugin": "^3.6.0",
"react": "^19.2.0",
"react-dom": "^19.1.1"
},
"devDependencies": {
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"esbuild": "^0.27.2",
"npm-run-all": "^4.1.5",
"typescript": "^5.9.3"
}
}