-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 918 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"test": "jest",
"add:pilet": "pilet new portal --target packages/pilet-${name:-x}",
"upgrade:pilet": "pilet upgrade --target packages/pilet-${name:-x}",
"watch:all": "pilet debug 'packages/pilet-*/src/index.tsx'",
"watch:portal": "piral debug packages/portal/src/index.html",
"build:portal": "piral build packages/portal/src/index.html",
"watch:pilet": "pilet debug packages/pilet-${name:-x}/src/index.tsx",
"prettier": "prettier --config prettier.config.js --write \"packages/**/*.ts\""
},
"devDependencies": {
"@types/jest": "^25.0.0",
"jest": "^25.0.0",
"jest-cli": "^25.0.0",
"lerna": "^4.0.0",
"piral-cli": "0.14.29",
"piral-cli-webpack5": "0.14.29",
"prettier": "^1.19.1",
"ts-jest": "^25.0.0",
"typescript": "^3.8.3"
},
"dependencies": {}
}