2023-03-17 16:22:16 +01:00

25 lines
552 B
JSON

{
"name": "@tailwindcss/integrations-parcel",
"private": true,
"version": "0.0.0",
"scripts": {
"build": "parcel build ./src/index.html --no-cache",
"dev": "parcel watch ./src/index.html --no-cache",
"test": "jest --runInBand --forceExit"
},
"jest": {
"testTimeout": 10000,
"displayName": "parcel",
"setupFilesAfterEnv": [
"<rootDir>/../../jest/customMatchers.js"
],
"transform": {
"\\.js$": "@swc/jest",
"\\.ts$": "@swc/jest"
}
},
"devDependencies": {
"parcel": "^2.8.3"
}
}