-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 841 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 841 Bytes
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
{
"name": "web",
"version": "1.0.0",
"repository": "https://github.com/getkatze/web.git",
"author": "Katze",
"license": "MIT",
"scripts": {
"dev": "parcel src/*.html --no-cache",
"build": "rimraf ./.parcel-cache ./dist && parcel build src/*.html",
"cleanup": "prettier --write src --parser typescript"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^4.0.3",
"@parcel/transformer-sass": "2.0.0-beta.2",
"autoprefixer": "^10.2.5",
"parcel": "^2.0.0-beta.2",
"postcss": "^8.2.13",
"rimraf": "^3.0.2",
"sass": "^1.32.12"
},
"dependencies": {
"@urql/core": "^2.0.0",
"graphql": "^15.5.0",
"lucia": "^0.5.1",
"tailwindcss": "^2.1.2",
"turbolinks": "^5.2.0"
},
"engines": {
"node": ">=0.14"
},
"browserslist": [
"> 0.2%",
"not dead"
]
}