-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.16 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
{
"name": "django-auth-style",
"private": true,
"license": "Apache-2.0",
"devDependencies": {
"daisyui": "^4.12.2",
"npm-run-all": "^4.1.5",
"parcel": "~2.11.0",
"remixicon": "^4.3.0",
"rimraf": "^5.0.7",
"stylelint": "^16.6.1",
"stylelint-config-standard": "^36.0.0",
"tailwindcss": "^3.4.4"
},
"scripts": {
"lint": "stylelint ./npm-src/*",
"watch": "parcel watch",
"build:clean": "rimraf ./auth_style/static/auth_style/dist",
"build:compile": "parcel build",
"build": "npm-run-all build:clean build:compile"
},
"targets": {
"styles": {
"source": [
"./npm-src/styles.pcss",
"./npm-src/icons.css"
],
"distDir": "./auth_style/static/auth_style/dist"
}
},
"browserslist": "> 0.5%",
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"apply",
"tailwind"
]
}
]
}
},
"postcss": {
"plugins": {
"tailwindcss": {}
}
},
"@parcel/transformer-css": {
"drafts": {
"nesting": true
}
}
}