-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.3 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
54
55
56
57
{
"name": "gt1191-starterkit",
"private": true,
"version": "2.1.1",
"browserslist": "> 2%, last 2 versions, not dead",
"scripts": {
"dev": "parcel \"src/**/*.html\" --no-cache --open",
"clean": "shx rm -rf ./.parcel-cache ./dist",
"reset": "yarn run clean && shx rm -rf ./node_modules yarn.lock",
"build": "yarn run clean && parcel build src/**/*.html",
"submission": "yarn run build --no-optimize"
},
"target": {
"default": {
"distDir": "dist",
"publicUrl": "/"
}
},
"prettier": {
"printWidth": 120,
"bracketSpacing": true,
"singleQuote": true,
"trailingComma": "es5",
"tabWidth": 2,
"proseWrap": "preserve",
"singleAttributePerLine": false,
"overrides": [
{
"files": [
".",
"**/*.html"
],
"options": {
"singleQuote": false
}
}
]
},
"packageManager": "[email protected]",
"dependencies": {
"@fontsource-variable/rubik": "^5.1.0"
},
"devDependencies": {
"@parcel/transformer-inline-string": "^2.13.2",
"parcel": "^2.13.2",
"posthtml-expressions": "^1.11.4",
"posthtml-include": "^2.0.1",
"sharp": "^0.33.5",
"shx": "^0.3.4"
},
"@parcel/transformer-css": {
"drafts": {
"nesting": true,
"customMedia": true
}
}
}