-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.08 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.08 KB
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
{
"private": true,
"license": "MIT",
"workspaces": [
"cassandra-client/ts",
"lov3/frontend"
],
"scripts": {
"build": "yarn workspaces foreach --verbose --parallel run build",
"clean": "yarn workspaces foreach --verbose --parallel run clean",
"test": "jest",
"test:changed": "jest --onlyChanged",
"test:fast": "jest --testPathIgnorePatterns e2e",
"lint": "eslint . --ext .ts",
"changeset": "changeset",
"version:all": "yarn version apply --all",
"publish": "yarn workspaces foreach --exclude examples --verbose npm publish --tolerate-republish --access public",
"upgrade-interactive": "yarn upgrade-interactive",
"check-version": "yarn version check",
".": "_______GLOBAL_TASKS_____",
"g:tsc:clean": "cd $INIT_CWD && tsc -b --clean",
"g:dev": "cd $INIT_CWD && tsc -b --clean",
"g:tsc:project": "cd $INIT_CWD && tsc -b --verbose",
"g:tsc:project:watch": "cd $INIT_CWD && tsc -b -w --verbose",
"g:tsc:cjs": "cd $INIT_CWD && tsc --outDir .dist-cjs --module CommonJS"
},
"devDependencies": {
"typescript": "^4.1.3"
}
}