-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 1.08 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
{
"name": "hyparcel",
"version": "1.0.0",
"description": "A Hyperapp v2 + TailwindCSS + Parcel boilerplate, with PurgeCSS intergrated in production",
"main": "index.js",
"scripts": {
"build:css": "postcss src/css/main.pcss -o src/css/style.css",
"dev": "parcel src/index.html --open --no-source-maps",
"prod": "rm -rf .cache && rm -rf dist && parcel build src/index.html --public-url ./ --no-source-maps"
},
"keywords": [
"hyperapp",
"tailwindcss",
"parcel-bundler",
"postcss"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.9.6",
"@fullhuman/postcss-purgecss": "^2.2.0",
"autoprefixer": "^9.7.6",
"babel-core": "^6.26.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.7.0",
"cssnano": "^4.1.10",
"dayjs": "^1.8.27",
"hyperapp": "^2.0.4",
"hyperapp-fx": "^2.0.0-beta.1",
"parcel-bundler": "^1.12.4",
"postcss-cli": "^7.1.1",
"postcss-modules": "^2.0.0",
"tailwindcss": "^1.4.6"
}
}