source: frontend/node_modules/tailwindcss/package.json

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 3.5 KB
Line 
1{
2 "name": "tailwindcss",
3 "version": "3.4.19",
4 "description": "A utility-first CSS framework for rapidly building custom user interfaces.",
5 "license": "MIT",
6 "main": "lib/index.js",
7 "types": "types/index.d.ts",
8 "repository": {
9 "type": "git",
10 "url": "https://github.com/tailwindlabs/tailwindcss.git#v3"
11 },
12 "bugs": "https://github.com/tailwindlabs/tailwindcss/issues",
13 "homepage": "https://tailwindcss.com",
14 "bin": {
15 "tailwind": "lib/cli.js",
16 "tailwindcss": "lib/cli.js"
17 },
18 "scripts": {
19 "prebuild": "npm run generate && rimraf lib",
20 "build": "swc src --out-dir lib --copy-files",
21 "postbuild": "esbuild lib/cli-peer-dependencies.js --bundle --platform=node --outfile=peers/index.js --define:process.env.CSS_TRANSFORMER_WASM=false",
22 "rebuild-fixtures": "npm run build && node -r @swc/register scripts/rebuildFixtures.js",
23 "style": "eslint .",
24 "pretest": "npm run generate",
25 "test": "jest",
26 "test:integrations": "npm run test --prefix ./integrations",
27 "install:integrations": "node scripts/install-integrations.js",
28 "generate:plugin-list": "node -r @swc/register scripts/create-plugin-list.js",
29 "generate:types": "node -r @swc/register scripts/generate-types.js",
30 "generate": "npm run generate:plugin-list && npm run generate:types",
31 "release-channel": "node ./scripts/release-channel.js",
32 "release-notes": "node ./scripts/release-notes.js",
33 "prepublishOnly": "npm install --force && npm run build"
34 },
35 "publishConfig": {
36 "provenance": true
37 },
38 "files": [
39 "src/*",
40 "cli/*",
41 "lib/*",
42 "peers/*",
43 "scripts/*.js",
44 "stubs/*",
45 "nesting/*",
46 "types/**/*",
47 "*.d.ts",
48 "*.css",
49 "*.js"
50 ],
51 "devDependencies": {
52 "@swc/cli": "0.1.62",
53 "@swc/core": "1.3.55",
54 "@swc/jest": "0.2.26",
55 "@swc/register": "0.1.10",
56 "autoprefixer": "^10.4.20",
57 "browserslist": "^4.24.0",
58 "concurrently": "^8.2.2",
59 "cssnano": "^6.1.2",
60 "esbuild": "^0.24.0",
61 "eslint": "^8.57.1",
62 "eslint-config-prettier": "^8.10.0",
63 "eslint-plugin-prettier": "^4.2.1",
64 "jest": "^29.7.0",
65 "jest-diff": "^29.7.0",
66 "lightningcss": "1.27.0",
67 "prettier": "^2.8.8",
68 "rimraf": "^5.0.10",
69 "source-map-js": "^1.2.1",
70 "turbo": "^1.13.4"
71 },
72 "dependencies": {
73 "@alloc/quick-lru": "^5.2.0",
74 "arg": "^5.0.2",
75 "chokidar": "^3.6.0",
76 "didyoumean": "^1.2.2",
77 "dlv": "^1.1.3",
78 "fast-glob": "^3.3.2",
79 "glob-parent": "^6.0.2",
80 "is-glob": "^4.0.3",
81 "jiti": "^1.21.7",
82 "lilconfig": "^3.1.3",
83 "micromatch": "^4.0.8",
84 "normalize-path": "^3.0.0",
85 "object-hash": "^3.0.0",
86 "picocolors": "^1.1.1",
87 "postcss": "^8.4.47",
88 "postcss-import": "^15.1.0",
89 "postcss-js": "^4.0.1",
90 "postcss-load-config": "^4.0.2 || ^5.0 || ^6.0",
91 "postcss-nested": "^6.2.0",
92 "postcss-selector-parser": "^6.1.2",
93 "resolve": "^1.22.8",
94 "sucrase": "^3.35.0"
95 },
96 "browserslist": [
97 "> 1%",
98 "not edge <= 18",
99 "not ie 11",
100 "not op_mini all"
101 ],
102 "jest": {
103 "testTimeout": 30000,
104 "setupFilesAfterEnv": [
105 "<rootDir>/jest/customMatchers.js"
106 ],
107 "testPathIgnorePatterns": [
108 "/node_modules/",
109 "/integrations/",
110 "/standalone-cli/",
111 "\\.test\\.skip\\.js$"
112 ],
113 "transformIgnorePatterns": [
114 "node_modules/(?!lightningcss)"
115 ],
116 "transform": {
117 "\\.js$": "@swc/jest",
118 "\\.ts$": "@swc/jest"
119 }
120 },
121 "engines": {
122 "node": ">=14.0.0"
123 }
124}
Note: See TracBrowser for help on using the repository browser.