-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 886 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
{
"private": true,
"author": "Jason Johnston",
"license": "MIT",
"scripts": {
"build": "lerna run build",
"build-client": "lerna run --scope @unicode-font-resolver/client build",
"build-data": "lerna run --scope @unicode-font-resolver/data build",
"serve-data": "npx serve --cors packages/data",
"test": "jest"
},
"devDependencies": {
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^29.2.6",
"@types/node": "^18.11.18",
"jest": "^29.3.1",
"lerna": "^6.4.1",
"prettier": "2.8.3",
"rollup": "^3.10.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-ts": "^3.2.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"workspaces": [
"packages/*"
]
}