-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
53 lines (53 loc) · 1.61 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
{
"name": "tailwindcss-parcel-boilerplate",
"version": "1.0.0",
"description": "",
"keywords": [
"tailwindcss",
"tailwind css",
"tailwind",
"parcel",
"postcss",
"posthtml"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hacknug/tailwindcss-parcel-boilerplate.git"
},
"license": "MIT",
"author": {
"name": "Nestor Vera",
"email": "[email protected]",
"url": "https://nestor.rip/"
},
"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 serve ./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 postcss:build parcel:build",
"start": "npm-run-all -s clean -p postcss:watch parcel:serve"
},
"devDependencies": {
"autoprefixer": "10.4.12",
"eslint": "7.32.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.0",
"npm-run-all": "4.1.5",
"parcel": "2.0.0-beta.3.1",
"parcel-plugin-bundle-visualiser": "1.2.0",
"percy": "0.28.7",
"postcss": "8.4.18",
"postcss-cli": "9.1.0",
"posthtml-expressions": "1.9.0",
"posthtml-include": "1.7.4",
"posthtml-load-config": "2.0.0",
"stylelint": "14.9.1",
"stylelint-config-standard": "29.0.0",
"tailwindcss": "2.1.4"
}
}