-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
100 lines (100 loc) · 2.96 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@appcd/plugin-webpack",
"version": "0.2.3",
"description": "Manage Webpack builds with Appc Daemon",
"main": "./dist/index.js",
"scripts": {
"app:build": "cross-env NODE_OPTIONS=--max-old-space-size=4096 nuxt build -c app/nuxt.config.js --generate=false",
"app:dev": "cross-env NODE_ENV=development NODE_OPTIONS=--max-old-space-size=4096 nodemon app/server/index.js --watch app/server --watch app/nuxt.config.js",
"app:lint": "eslint --ext .js,.vue --ignore-path .gitignore app",
"build": "gulp build",
"coverage": "gulp coverage",
"dev": "gulp watch",
"docs": "gulp docs",
"prepare": "gulp build && yarn run app:build",
"test": "gulp test"
},
"keywords": [
"webpack",
"appcd",
"titanium"
],
"author": "Axway Appcelerator",
"maintainers": [
"Jan Vennemann <[email protected]>"
],
"license": "Apache-2.0",
"homepage": "https://github.com/appcelerator/appcd-plugin-webpack#readme",
"bugs": "https://github.com/appcelerator/appcd-plugin-webpack/issues",
"repository": "https://github.com/appcelerator/appcd-plugin-webpack",
"dependencies": {
"@babel/core": "^7.9.6",
"@hapi/joi": "^17.1.1",
"@nuxtjs/axios": "^5.8.0",
"@nuxtjs/proxy": "^1.3.3",
"@soda/friendly-errors-webpack-plugin": "^1.7.1",
"acorn": "^7.1.1",
"acorn-walk": "^7.0.0",
"appcd-fswatcher": "^1.2.3",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.2",
"hash-sum": "^2.0.0",
"koa": "^2.11.0",
"lodash.defaultsdeep": "^4.6.1",
"lodash.mapvalues": "^4.6.0",
"lodash.transform": "^4.6.0",
"node-titanium-sdk": "^5.1.0",
"nuxt": "^2.11.0",
"pretty-time": "^1.1.0",
"read-pkg": "^5.2.0",
"source-map": "^0.7.3",
"source-map-support": "^0.5.9",
"terser-webpack-plugin": "^3.0.1",
"update-check": "^1.5.4",
"v8-compile-cache": "^2.1.1",
"webpack": "^4.43.0",
"webpack-chain": "^6.4.0",
"webpack-target-titanium": "^2.1.0",
"webpack-virtual-modules": "^0.2.1"
},
"devDependencies": {
"@mdi/js": "^5.3.45",
"@msgpack/msgpack": "^1.9.0",
"@nuxtjs/eslint-config": "^3.0.0",
"@nuxtjs/eslint-module": "^2.0.0",
"@nuxtjs/vuetify": "1.11.0",
"appcd-gulp": "^3.0.0",
"babel-eslint": "^10.0.3",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-nuxt": "^1.0.0",
"eslint-plugin-prettier": "^3.1.1",
"gulp": "^4.0.2",
"nodemon": "^2.0.4",
"nuxt-webfontloader": "^1.1.0",
"prettier": "^1.16.4",
"uuid": "^8.1.0",
"vue-timeago": "^5.1.2",
"xterm": "^4.6.0",
"xterm-addon-fit": "^0.4.0",
"xterm-addon-web-links": "^0.4.0"
},
"files": [
"app/.nuxt/dist",
"app/server",
"app/static",
"app/nuxt.config.js",
"config",
"dist"
],
"appcd": {
"apiVersion": "^1.1.0 || ^2.0.0",
"inactivityTimeout": 600000,
"name": "webpack",
"type": "external",
"config": "./config/config.js"
},
"publishConfig": {
"access": "public"
}
}