-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.68 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
{
"name": "plate",
"version": "0.0.0",
"description": "Old boilerplate for web-pages!",
"main": "build/main.js",
"license": "MIT",
"private": true,
"author": {
"url": "https://soypache.co",
"name": "Alvaro Cabrera",
"email": "[email protected]"
},
"scripts": {
"now-build": "npm run dist",
"now-dev": "npm run dev",
"start": "npm run dev",
"dev": "npm run build -- -w",
"dist": "npm run build -- -q",
"check": "eslint 'src/**/*.{js,pug,svelte}'",
"build": "mortero -dcpublic:. -X'{lib,shared,components}' -ecss.less -I.gitignore --platform browser",
"predist": "npm run check"
},
"repository": {
"type": "git",
"url": "https://github.com/tacoss/plate.git",
"issues": "https://github.com/tacoss/plate/issues"
},
"mortero": {
"bundle": [
"**/index.js",
"**/scripts/*.js"
],
"rename": [
"src/**:{filepath/1}",
"**/index.(css|js):{basedir}{ext}",
"**/{pages,resources}/**:{filepath/1}",
"**/!(index).html:{basedir}/{name}/index.html"
],
"options": {
"kramed": {
"highlight": true
},
"less": {
"plugins": [
"less-plugin-autoprefix"
]
}
}
},
"devDependencies": {
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-pug": "^1.2.3",
"eslint-plugin-svelte3": "^3.2.0",
"highlight.js": "^11.7.0",
"kramed": "^0.5.6",
"less": "^4.1.1",
"less-plugin-autoprefix": "^2.0.0",
"live-server": "^1.2.2",
"mortero": "^0.0.116",
"pug": "^3.0.2",
"somedom": "^0.4.32",
"svelte": "^3.59.2",
"yrv": "^0.0.57"
}
}