-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.55 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
101
102
103
104
105
106
107
108
109
110
{
"name": "my-currency",
"version": "1.0.0-SNAPSHOT",
"description": "Project to demonstrate how to develop Cubbles artifacts using the vanilla-boilerplate.",
"private": true,
"main": "\"\"",
"scripts": {
"build": "npm-run-all --serial clean \"_webpack -- -d --config src/webpack.config.js\"",
"build:watch": "npm-run-all --serial \"_webpack -- -d --config src/webpack.config.js --watch\"",
"build:prod": "npm-run-all --serial clean \"_webpack -- -p --config src/webpack.config.js\"",
"clean": "rimraf ./dist",
"upload": "upload-webpackage",
"upload:prod": "upload-webpackage -p",
"validate-manifest": "validate-manifest",
"start": "npm-run-all --parallel _serve _open",
"start:watch": "npm-run-all --parallel build:watch _serve _open",
"_serve": "light-server -s dist --proxy https://cubbles.world/sandbox -w \"dist/**\"",
"_webpack": "webpack",
"_open": "wpkg-utils-open",
"cli": "ntl -d -s 7"
},
"ntl": {
"descriptions": {
"build": "Clean the './dist' folder and (re-)build the webpackage from scratch.",
"build:watch": "(Re-)build the webpackage on source code changes.",
"build:prod": "(Re-)build the webpackage on production mode.",
"clean": "Clean the './dist' folder.",
"upload:dryRun": "Upload the webpackage - use dev config.",
"upload": "Upload the webpackage.",
"start": "Open the browser your your locally built webpackage.",
"start:watch": "Open the browser your your locally built webpackage and reload on changes."
}
},
"author": "Edwin Gamboa <[email protected]>",
"license": "MIT",
"devDependencies": {
"@cubbles/webpackage-document-api": "^0.2.1",
"@cubbles/webpackage-uploader": "^0.1.10",
"@cubbles/wpkg-utils": "0.2.2",
"autoprefixer": "^9.3.1",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"cssnano": "^4.1.7",
"extra-watch-webpack-plugin": "^1.0.3",
"filemanager-webpack-plugin": "^2.0.5",
"find": "^0.2.9",
"generate-json-webpack-plugin": "^0.3.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"light-server": "^2.5.1",
"npm-run-all": "^4.1.3",
"opn": "^5.3.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.2.0",
"preprocess-loader": "^0.2.2",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.2",
"run-func": "^1.0.2",
"style-loader": "^0.21.0",
"sugarss": "^2.0.0",
"webpack": "^4.12.0",
"webpack-bundle-analyzer": "^3.0.2",
"webpack-cli": "^3.0.3",
"yo": "^2.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cubbles/coder-toolset.git"
},
"keywords": [
"vanila boilerplate",
"Cubbles"
],
"bugs": {
"url": "https://github.com/cubbles/coder-toolset/issues"
},
"homepage": "https://github.com/cubbles/coder-toolset/tree/develop/packages/vanilla-boilerplate#cubblesvanilla-boilerplate",
"publishConfig": {
"access": "public"
},
"dependencies": {
"walk": "^2.3.14"
},
"cubbles": {
"coder-toolset": {
"cubx-webpackage-uploader": {
"dev": {
"target": {
"url": "http://cubbles.world/sandbox",
"proxy": ""
},
"debug": false,
"dryRun": false
},
"prod": {
"target": {
"url": "http://cubbles.world/shared",
"proxy": ""
},
"debug": false,
"dryRun": false
}
}
}
}
}