-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "tailwindcss-postcss-poc",
"version": "0.1.0",
"main": "index.js",
"scripts": {
"build": "esbuild --bundle index.js --platform=node --outdir=dist --minify --sourcemap --external:postcss --external:postcss-js",
"predemo": "npm run build",
"demo": "cd watching-demo; webpack --watch",
"test": "jest"
},
"license": "MIT",
"prettier": {
"printWidth": 120,
"semi": false,
"trailingComma": "all",
"singleQuote": true,
"arrowParens": "always"
},
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.14",
"@swc/jest": "^0.2.23",
"css-loader": "^6.7.1",
"esbuild": "^0.15.13",
"fast-glob": "^3.2.12",
"glob-parent": "^6.0.2",
"jest": "^29.2.2",
"mini-css-extract-plugin": "^2.6.1",
"postcss": "^8.4.18",
"postcss-js": "^4.0.0",
"postcss-loader": "^7.0.1",
"prettier": "^2.7.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"jest": {
"testTimeout": 30000,
"transform": {
"\\.js$": "@swc/jest"
}
}
}