-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.79 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.79 KB
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
{
"name": "wape",
"version": "0.5.2",
"description": "Webpage application page editor",
"main": "wape.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"css:dev": "NODE_ENV=development postcss dist/styles/*.css --replace",
"css:prod": "NODE_ENV=production postcss dist/styles/*.css --replace",
"css:watch": "NODE_ENV=development postcss src/app/styles/*.css --dir dist/styles --watch --verbose",
"build:dev": "rollup --config --environment BUILD:development && npm run css:dev",
"build:prod": "rollup --config --environment BUILD:production && npm run css:prod",
"build:watch": "rollup --config --watch --environment BUILD:development",
"serve": "http-server dist -p 8787",
"live": "run-p serve build:watch css:watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tchartron/wape.git"
},
"keywords": [
"wape",
"web",
"page",
"webpage",
"builder",
"editor",
"html",
"css",
"layout"
],
"author": "Thomas Chartron",
"license": "MIT",
"bugs": {
"url": "https://github.com/tchartron/wape/issues"
},
"homepage": "https://github.com/tchartron/wape#readme",
"devDependencies": {
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-replace": "^2.3.4",
"autoprefixer": "^10.2.4",
"cssnano": "^5.1.14",
"http-server": "^14.1.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"postcss-cli": "^8.3.1",
"rollup": "^2.39.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^6.0.0",
"tailwindcss": "^2.2.19"
},
"dependencies": {
"lodash": "^4.17.21",
"mitt": "^2.1.0",
"vue": "^2.6.12"
}
}