-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.09 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": "kattwalksalon",
"version": "1.0.0",
"scripts": {
"dev": "parcel index.pug",
"watch": "parcel watch *.html *.pug",
"build": "rm -rf dist .cache && parcel build *.html *.pug --no-minify"
},
"dependencies": {},
"devDependencies": {
"@prettier/plugin-pug": "^1.4.4",
"parcel-bundler": "^1.12.4",
"parcel-plugin-custom-dist-structure": "^1.1.13",
"postcss-nested": "^4.2.1",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.5",
"pug": "^3.0.0",
"tailwindcss": "^1.4.6"
},
"customDistStructure": {
"config": {
".js": "js",
"images": [
".jpg",
".png",
".webp"
],
".css": "css"
}
},
"browserslist": [
"> 0.25%",
"not ie 11",
"not op_mini all"
],
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": false,
"jsxBracketSameLine": true,
"arrowParens": "avoid",
"endOfLine": "auto",
"overrides": [
{
"files": "*.pug",
"options": {
"parser": "pug"
}
}
]
},
"license": "ISC"
}