-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 971 Bytes
/
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
{
"name": "placeholder-name",
"version": "1.0.0",
"author": "Your Name <you@example.com>",
"license": "UNLICENSED",
"private": true,
"scripts": {
"dj": ".venv/bin/python manage.py runserver",
"build:postcss": "NODE_ENV=production postcss static_src/css/main.css -o static/css/main.css",
"watch:postcss": "postcss static_src/css/main.css -o static/css/main.css --watch --verbose",
"dev": "npm-run-all --parallel watch:postcss dj",
"build": "npm-run-all build:*"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@playwright/test": "^1.36.0",
"autoprefixer": "^10.4.14",
"cssnano": "^7.0.1",
"dotenv": "^16.3.1",
"eslint": "^9.9.1",
"globals": "^16.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.24",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.0.0",
"postcss-nesting": "^13.0.0",
"prettier": "^3.0.2",
"stylelint": "^16.0.1",
"stylelint-config-standard": "^37.0.0"
}
}