This repository has been archived by the owner on Jul 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.61 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": "@nsoft/chameleon-bundle-material",
"description": "Material Bundle for Chameleon applications",
"version": "0.1.2",
"private": false,
"contributors": [
"Team Chameleon (Tools) <chameleon@nsoft.com>"
],
"scripts": {
"serve": "vue-cli-service serve",
"lint": "vue-cli-service lint",
"test:e2e": "vue-cli-service test:e2e",
"test:unit": "vue-cli-service test:unit",
"build": "CHM_TARGET=lib vue-cli-service build --target lib --formats umd-min --name bundle --entry src/index.js",
"build:components": "CHM_TARGET=components vue-cli-service build --target lib --formats umd-min --name chameleon-components 'src/index.components.js'",
"build-meta": "CHM_TARGET=lib vue-cli-service build --no-clean --target lib --formats umd-min --name bundle.meta --entry src/index.meta.js",
"build-bundle": "npm run build && npm run build-meta && node build/cleanup.js",
"zip-bundle": "node ./build/bundle.js",
"bundle": "npm run build-bundle && npm run zip-bundle",
"deploy": "CHM_TARGET=playground vue-cli-service build",
"deploy-bundle:production": "NODE_ENV=production node ./build/deploy.js",
"deploy-bundle:staging": "NODE_ENV=staging node ./build/deploy.js"
},
"main": "deploy-components/chameleon-components.umd.min.js",
"chameleon": {
"bundle": "material"
},
"dependencies": {
"@nsoft/chameleon-notation": "^1.0.16",
"@nsoft/chameleon-sdk": "^1.0.107",
"axios": "^0.19.0",
"date-fns": "^2.7.0",
"date-fns-tz": "^1.0.8",
"lodash": "^4.17.15",
"quill": "^1.3.7",
"uuid": "^3.3.2",
"validator": "^9.4.1",
"vue": "^2.6.10",
"vue-jsoneditor": "^1.0.13",
"vuetify": "^2.1.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.11.0",
"@vue/cli-plugin-eslint": "^3.11.0",
"@vue/cli-plugin-unit-jest": "^3.11.0",
"@vue/cli-service": "^3.11.0",
"@vue/eslint-config-airbnb": "^4.0.1",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^23.6.0",
"babel-plugin-lodash": "^3.3.4",
"codecov": "^3.6.1",
"eslint": "^6.4.0",
"eslint-config-vuetify": "^0.2.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-vue": "^5.2.3",
"eslint-plugin-vuetify": "^1.0.0-beta.3",
"fibers": "^4.0.1",
"lodash-webpack-plugin": "^0.11.5",
"node-zip": "^1.1.1",
"sass": "^1.22.12",
"sass-loader": "^7.3.1",
"sinon": "^7.5.0",
"vue-cli-plugin-vuetify": "^0.6.3",
"vue-router": "^3.1.3",
"vue-server-renderer": "^2.6.10",
"vue-template-compiler": "^2.6.10",
"webpack-bundle-analyzer": "^3.5.1"
}
}