-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 995 Bytes
/
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
{
"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"
}
}