-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.01 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
{
"name": "css-over-engineering",
"version": "1.2.9",
"license": "MIT",
"scripts": {
"clear:cache": "rm -rf .parcel-cache",
"clear:dist": "rm -rf dist",
"clear": "yarn clear:dist && yarn clear:cache",
"prestart": "yarn clear",
"start": "parcel src/index.html -p 6001",
"prebuild": "yarn clear",
"build": "parcel build src/index.html --no-optimize --public-url ./ && git add . && git commit --amend --no-edit && git push -f",
"rel:push": "git push && git push --tags",
"rel:major": "yarn build && yarn version --major && yarn rel:push",
"rel:minor": "yarn build && yarn version --minor && yarn rel:push",
"rel:patch": "yarn build && yarn version --patch && yarn rel:push"
},
"dependencies": {
"reveal.js": "5.1.0"
},
"devDependencies": {
"@parcel/transformer-inline-string": "2.13.0",
"@parcel/transformer-sass": "2.13.0",
"lightningcss": "1.28.1",
"parcel": "2.13.0",
"posthtml-include": "2.0.1",
"sharp": "0.33.5",
"svgo": "3.3.2"
}
}