1234567891011121314151617181920212223242526272829303132 |
- {
- "name": "pupper.js",
- "version": "1.0.0",
- "description": "A reactive template engine based in Pug and Alpine.js",
- "author": "Matheus Giovani <matheus@ad3com.com.br>",
- "license": "AGPL-3.0",
- "private": true,
- "packageManager": "yarn@1.22.10",
- "workspaces": [
- "./packages/compiler",
- "./packages/renderer",
- "./packages/webpack-loader"
- ],
- "scripts": {
- "build": "cross-env NODE_ENV=production npm-run-all -s build:*",
- "build:compiler": "cd packages/compiler && yarn build",
- "build:renderer": "cd packages/renderer && yarn build",
- "watch": "npm-run-all -p watch:*",
- "watch:compiler": "cd packages/compiler && yarn watch",
- "watch:renderer": "cd packages/renderer && yarn watch",
- "watch:test": "nodemon"
- },
- "dependencies": {},
- "devDependencies": {
- "cross-env": "^7.0.3",
- "source-map-loader": "^3.0.0",
- "source-map-support": "^0.5.21",
- "webpack": "^5.51.1",
- "webpack-cli": "^4.8.0",
- "yarn-run-all": "^3.1.1"
- }
- }
|