-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.45 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
{
"name": "django_react_tailwindcss",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"prepare": "husky install && yarn build:dev:tailwindcss && poetry install",
"build:dev:tailwindcss": "tailwind build ./assets/css/tailwind.css -o ./static/css/tailwind.css && cleancss -o ./static/css/tailwind.min.css ./static/css/tailwind.css",
"dev": "yarn dev:django & yarn dev:webpack & yarn dev:browser-sync",
"dev:django": "poetry run python manage.py runserver 0.0.0.0:8000",
"dev:webpack": "webpack --watch --mode development",
"dev:browser-sync": "browser-sync start",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,css,html,scss,md,mdx}": [
"prettier --write"
]
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@babel/preset-react": "^7.12.13",
"@storybook/addon-actions": "^6.1.17",
"@storybook/addon-essentials": "^6.1.17",
"@storybook/addon-links": "^6.1.17",
"@storybook/react": "^6.1.17",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.2.2",
"browser-sync": "^2.26.14",
"clean-css-cli": "^4.3.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"postcss": "^8.2.10",
"prettier": "2.2.1",
"tailwindcss": "^2.1.1",
"webpack": "^5.21.1",
"webpack-cli": "^4.5.0"
},
"dependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
}
}