-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.4 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
55
56
57
58
59
60
{
"name": "@openreplyde/web-docker",
"version": "1.3.0-alpha.6",
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"scripts": {
"dev:test-host": "vite --config vite.config.test-host.ts --host",
"build:web-docker": "vue-tsc --noEmit && vite build --config vite.config.web-docker.ts",
"build:web-docker:types": "tsc --emitDeclarationOnly --declaration --declarationMap --project ./tsconfig.lib.json",
"build:test-host": "vue-tsc --noEmit && vite build --config vite.config.test-host.ts",
"build:page-module": "vue-tsc --noEmit && vite build --config vite.config.page-module.ts",
"build:observed-module": "vue-tsc --noEmit && vite build --config vite.config.observed-module.ts",
"build:remote:page-module": "vue-tsc --noEmit && vite build --config vite.config.remote-page-module.ts",
"build:remote:observed-module": "vue-tsc --noEmit && vite build --config vite.config.remote-observed-module.ts",
"serve:test-host": "http-server --cors='*' -p 3000 dist/test-host",
"serve:fragments": "http-server --cors='*' -p 3010 dist/fragment",
"serve:web-docker": "http-server --cors='*' -p 3020 dist",
"wait-on:test-host": "wait-on http://localhost:3000",
"wait-on:fragment": "wait-on http://localhost:3010",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts",
"lint:fix": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"generate:qa": "npx playwright codegen",
"test:e2e": "playwright test",
"test:unit": "export VITE_CONFIG_FILE_PATH=/assets/config.json && vitest",
"typecheck": "vue-tsc --noEmit"
},
"devDependencies": {
"@playwright/test": "1.29.0",
"@testing-library/dom": "^8.14.0",
"@types/node": "^18.0.0",
"@vitejs/plugin-vue": "^4.3.4",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"eslint": "^8.5.0",
"eslint-plugin-vue": "^8.2.0",
"happy-dom": "^5.3.4",
"http-server": "^14.1.1",
"prettier": "2.7.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.7.4",
"vite": "^4.4.9",
"vitest": "^0.16.0",
"vitest-fetch-mock": "^0.2.1",
"vue": "^3.2.25",
"vue-tsc": "^0.38.2",
"wait-on": "^7.2.0"
}
}