-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.05 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
{
"name": "theme",
"version": "3.8.0",
"license": "MIT",
"scripts": {
"start": "yarn dev",
"build": "yarn build:clean && yarn build:tailwind",
"build:clean": "rimraf static/css/dist",
"build:tailwind": "cross-env NODE_ENV=production tailwindcss --postcss -i theme/static_src/src/styles.css -o theme/static/css/dist/styles.css --minify",
"dev": "cross-env NODE_ENV=development tailwindcss --postcss -i theme/static_src/src/styles.css -o theme/static/css/dist/styles.css -w",
"tailwindcss": "node ./node_modules/tailwindcss/lib/cli.js"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@testing-library/dom": "^10.4.0",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"postcss": "^8.4.32",
"postcss-import": "^15.1.0",
"postcss-nested": "^6.0.1",
"postcss-simple-vars": "^7.0.1",
"rimraf": "^5.0.5",
"string-width-cjs": "^5.1.1",
"tailwindcss": "^3.4.0"
},
"dependencies": {
"autoprefixer": "^10.4.20"
}
}