-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 952 Bytes
/
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
{
"name": "actions-catalog",
"version": "0.0.1",
"description": "A catalog of GitHub actions",
"scripts": {
"preinstall": "npx npm-force-resolutions",
"setup": "gem install bundler && bundle install && npm i",
"start": "concurrently --kill-others \"npm run css:dev\" \"jekyll serve --baseurl '' \"",
"build": "npm run css:rel && jekyll build",
"css:dev": "parcel watch styles/index.css --no-source-maps",
"css:rel": "parcel build styles/index.css --no-source-maps"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^3.0.0",
"@tailwindcss/typography": "^0.4.0",
"autoprefixer": "^9.8.6",
"concurrently": "^5.3.0",
"parcel-bundler": "^1.12.4",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.0.4"
},
"resolutions": {
"node-forge": "0.10.0"
},
"dependencies": {
"ansi-regex": "^6.0.1"
}
}