-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.45 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
{
"name": "examples",
"version": "1.0.0",
"description": "Compilation of Scalprum examples",
"repository": "https://github.com/scalprum/examples",
"main": "index.js",
"private": true,
"workspaces": [
"showcase/shell",
"showcase/remote-module",
"showcase/plugin-with-tab-1",
"showcase/plugin-with-tab-2"
],
"scripts": {
"lint": "eslint . --ext .ts,.tsx,.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build:remotes": "concurrently \"npm run build --prefix showcase/remote-module\" \"npm run build --prefix showcase/plugin-with-tab-1\" \"npm run build --prefix showcase/plugin-with-tab-2\"",
"serve:remotes": "concurrently \"npm run serve --prefix showcase/remote-module\" \"npm run serve --prefix showcase/plugin-with-tab-1\" \"npm run serve --prefix showcase/plugin-with-tab-2\"",
"start:showcase": "npm run build:remotes && concurrently \"npm run serve --prefix showcase/shell\" \"npm run serve:remotes\""
},
"author": "Martin Marosi <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"prettier": "^3.2.5"
},
"dependencies": {
"@babel/eslint-parser": "^7.24.1"
}
}