-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.08 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
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@waytohealth/inbox-component",
"main": "dist/inbox-component.ssr.js",
"browser": "dist/inbox-component.esm.js",
"module": "dist/inbox-component.esm.js",
"unpkg": "dist/inbox-component.min.js",
"files": [
"dist/*"
],
"sideEffects": false,
"scripts": {
"serve": "vue-cli-service serve",
"prebuild": "rimraf ./dist",
"lint": "eslint --ext .js,.vue src",
"prepublish": "yarn build",
"build": "cross-env NODE_ENV=production rollup --config build/rollup.config.js",
"build:ssr": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format cjs",
"build:es": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format es",
"build:unpkg": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format iife"
},
"dependencies": {
"dayjs": "^1.11.4",
"emoji-regex": "^10.2.1",
"vue": "2.6",
"vue-emoji-picker": "^1.0.3"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/eslint-parser": "^7.12.16",
"@babel/preset-env": "^7.14.7",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@vue/cli-plugin-babel": "~5.0.0",
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/cli-plugin-router": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"bootstrap": "4",
"bootstrap-vue": "^2.22.0",
"cross-env": "^7.0.3",
"eslint": "^8.32.0",
"eslint-plugin-vue": "^9.9.0",
"minimist": "^1.2.5",
"rimraf": "^3.0.2",
"rollup": "^2.52.8",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^5.1.9",
"vue-template-compiler": "2.6.14"
},
"peerDependencies": {
"bootstrap": "4",
"bootstrap-vue": "^2.22.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "@babel/eslint-parser"
},
"rules": {}
},
"version": "0.4.9"
}