forked from kevinmoch/aui3-poc-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.5 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
{
"name": "aui3-poc-demo",
"version": "1.0.0",
"description": "Hook & Composition API + Renderless + CSS Vars = AUI 3.0",
"license": "MIT",
"private": true,
"scripts": {
"serve:vue": "vue-cli-service serve",
"serve:react": "cross-env PLATFORM_ENV=react react-app-rewired start",
"build": "npm run build:vue && npm run build:react",
"build:vue": "vue-cli-service build",
"build:react": "cross-env PLATFORM_ENV=react PUBLIC_URL=./ react-app-rewired build",
"build:card": "cross-env PLATFORM_ENV=card vue-cli-service build --target lib --name card --dest card src/card/Card.vue && cp-cli card/card.umd.min.js public/card.js",
"start": "node http-server.js"
},
"dependencies": {
"babel-loader": "^9.1.3",
"css-vars-ponyfill": "^2.4.8",
"less": "^4.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"vue": "~2.6.14",
"vue-function-api": "^2.1.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^5.0.0",
"@vue/cli-service": "^5.0.0",
"compression": "^1.7.4",
"cp-cli": "^2.0.0",
"cross-env": "^7.0.0",
"express": "^4.17.1",
"less-loader": "^11.1.3",
"react-app-rewired": "^2.1.3",
"react-scripts": "~5.0.1",
"typescript": "*",
"vue-template-compiler": "~2.6.14"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"keywords": []
}