-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 982 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
{
"private": true,
"workspaces": [
"math2code",
"tex-math-parser",
"react-math-view"
],
"packageManager": "[email protected]",
"scripts": {
"postinstall": "patch-package",
"lint": "yarn workspaces run lint",
"test": "yarn workspace tex-math-parser build:test && yarn workspace math2code test",
"testTex": "yarn workspace tex-math-parser run test",
"testTexNew": "yarn workspace tex-math-parser run jest newStuff.test.ts",
"build": "yarn workspace tex-math-parser run build && yarn workspace react-math-view run build",
"buildProd": "yarn workspace tex-math-parser run build && yarn workspace react-math-view run build && yarn workspace math2code build",
"dev": "yarn build && yarn workspace math2code run dev",
"prod": "yarn buildProd && yarn workspace math2code run start"
},
"dependencies": {
"mathjs": "^9.4.4",
"patch-package": "^6.4.7"
}
}