forked from tailwindclub/tailwindv2-parcel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.38 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
{
"name": "tailwindparcel",
"version": "1.0.0",
"author": "Chilly Orange <[email protected]>",
"license": "MIT",
"scripts": {
"postcss:watch": "postcss src/assets/css/index.pcss -o src/assets/css/index.css --env development -w",
"postcss:build": "postcss src/assets/css/index.pcss -o src/assets/css/index.css --env production",
"parcel:serve": "parcel src/index.html",
"parcel:watch": "parcel watch src/index.html",
"parcel:build": "parcel build src/index.html",
"clean": "rm -rf dist .parcel-cache",
"build": "npm-run-all -s clean parcel:build",
"start": "npm-run-all -s clean parcel:serve"
},
"dependencies": {
"autoprefixer": "^10.2.5",
"parcel": "^2.0.0-alpha.3.2",
"postcss": "^8.0.0",
"postcss-modules": "^4.0.0",
"sass": "^1.26.3",
"tailwindcss": "^2.1.2"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^3.0.0",
"cssnano": "^4.1.10",
"eslint": "^7.14.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^8.3.0",
"postcss-fontpath": "^1.0.0",
"posthtml-expressions": "^1.7.0",
"posthtml-include": "^1.6.0",
"posthtml-load-config": "^2.0.0",
"stylelint-config-standard": "^20.0.0"
}
}