forked from underground-works/clockwork-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.97 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
{
"name": "Clockwork",
"version": "5.1.0-beta0",
"description": "php dev tools in your browser",
"repository": "github:underground-works/clockwork-app",
"license": "MIT",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"build-chrome": "vue-cli-service build && del-cli dist/chrome && move-cli --mkdirp build dist/chrome && cpx 'platforms/chrome/**/*' dist/chrome/",
"build-chrome-dev": "vue-cli-service build --mode=development && del-cli dist/chrome && move-cli --mkdirp build dist/chrome && cpx 'platforms/chrome/**/*' dist/chrome/",
"build-firefox": "vue-cli-service build && del-cli dist/firefox && move-cli --mkdirp build dist/firefox && cpx 'platforms/firefox/**/*' dist/firefox/",
"build-firefox-dev": "vue-cli-service build --mode=development && del-cli dist/firefox && move-cli --mkdirp build dist/firefox && cpx 'platforms/firefox/**/*' dist/firefox/",
"build-edge": "vue-cli-service build && del-cli dist/edge && move-cli --mkdirp build dist/edge && cpx 'platforms/edge/**/*' dist/edge/",
"build-edge-dev": "vue-cli-service build --mode=development && del-cli dist/edge && move-cli --mkdirp build dist/edge && cpx 'platforms/edge/**/*' dist/edge/",
"build-share": "VUE_APP_PLATFORM=share vue-cli-service build && del-cli dist/share && move-cli --mkdirp build dist/share",
"build-share-dev": "VUE_APP_PLATFORM=share vue-cli-service build --mode=development && del-cli dist/share && move-cli --mkdirp build dist/share",
"build-web": "vue-cli-service build && del-cli dist/web && move-cli --mkdirp build dist/web",
"build-web-dev": "vue-cli-service build --mode=development && del-cli dist/web && move-cli --mkdirp build dist/web"
},
"dependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.10.4",
"@sqltools/formatter": "^1.2.2",
"ansi-to-html": "^0.6.14",
"core-js": "^3.6.5",
"cpx2": "^3.0.0",
"date-fns": "^2.16.1",
"feather-icons": "^4.28.0",
"just-clone": "^3.1.0",
"just-debounce-it": "^1.1.0",
"just-extend": "^4.1.0",
"just-intersect": "^3.1.0",
"just-is-empty": "^2.0.1",
"just-map-values": "^1.1.0",
"just-omit": "^1.1.0",
"just-pick": "^2.1.0",
"just-unique": "^3.2.0",
"linkifyjs": "^2.1.9",
"lodash": "^4.17.19",
"prismjs": "^1.24.1",
"register-service-worker": "^1.7.1",
"urijs": "^1.19.2",
"v-click-outside": "^3.1.2",
"vue": "^2.6.11",
"vue-clipboard2": "^0.3.1",
"vue-spinkit": "1.4.0",
"vue-svg-loader": "^0.16.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.4.6",
"@vue/cli-plugin-pwa": "^4.4.6",
"@vue/cli-service": "^4.4.6",
"del-cli": "^3.0.1",
"move-cli": "^1.2.1",
"node-sass": "^6.0.0",
"sass-loader": "^10.2.0",
"vue-cli-plugin-webpack-bundle-analyzer": "~4.0.0",
"vue-template-compiler": "^2.6.11"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}