-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.56 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
{
"name": "@asimojs/dpademo",
"version": "0.0.1",
"description": "Dynamic Page Application demo",
"author": "Bertrand Laporte",
"license": "MIT",
"bugs": "https://github.com/asimojs/dpademo/issues",
"keywords": [
"dpa",
"lml",
"dynamic modules",
"asimo",
"module loader",
"dependency injection"
],
"scripts": {
"start": "yarn vite preview --port 3000 --host 127.0.0.1",
"build-core": "tsc && vite build",
"build": "yarn build-core && yarn bundle",
"bundle": "rollup --config rollup.config.js --bundleConfigAsCjs && bash copy-statics.bash",
"e2e": "yarn playwright test",
"dev": "vite",
"serve": "vite preview",
"gh-pages": "yarn build && bash copy-gh-pages.bash"
},
"dependencies": {
"@asimojs/asimo": "^0.0.1",
"@asimojs/lml": "^0.0.5",
"@traxjs/trax": "^0.0.3",
"@traxjs/trax-preact": "^0.0.5",
"preact": "^10.11.3",
"preact-jsx-runtime": "^1.2.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@playwright/test": "^1.34.3",
"@preact/preset-vite": "^2.5.0",
"@rollup/plugin-typescript": "^11.1.0",
"@testing-library/dom": "8.20.0",
"@testing-library/preact": "^3.2.3",
"@testing-library/user-event": "^14.4.3",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.1",
"autoprefixer": "^10.4.14",
"jsdom": "^21.1.0",
"postcss": "^8.4.23",
"preact-dom": "^1.0.1",
"rollup-plugin-includepaths": "^0.2.4",
"tailwindcss": "^3.3.2",
"tslib": "^2.5.0",
"typescript": "^4.9.4",
"vite": "^4.0.3",
"vitest": "^0.26.3"
}
}