-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 1.01 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
{
"name": "cloudflare-waf-custom-rules",
"version": "1.0.0",
"description": "Wrapper library to import / export remote multiple rules and easily create, modify and delete rules.",
"scripts": {
"dev": "cross-env NODE_ENV=development postcss ./static/scss/style.scss -o ./static/css/main.css",
"watch": "cross-env TAILWIND_MODE=watch NODE_ENV=development postcss ./static/scss/style.scss -o ./static/css/main.css -w",
"build": "cross-env TAILWIND_MODE=build NODE_ENV=production postcss ./static/scss/style.scss -o ./static/css/main.css"
},
"type": "module",
"author": "Quentin Lienhardt",
"license": "Apache-2.0",
"devDependencies": {
"autoprefixer": "^10.4.17",
"cross-env": "^7.0.3",
"cssnano": "^6.0.3",
"postcss": "^8.4.33",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.0.0",
"postcss-preset-env": "^9.3.0",
"postcss-scss": "^4.0.9",
"tailwindcss": "^3.4.1"
},
"keywords": [
"cloudflare",
"rules",
"bulk",
"edit",
"import",
"export"
]
}