forked from jaredwray/keyv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 932 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
{
"name": "@keyv/mono-repo",
"version": "1.0.0",
"description": "Keyv Mono Repo",
"repository": "https://github.com/jaredwray/keyv.git",
"author": "Jared Wray <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces run build",
"test": " yarn build && c8 --reporter=lcov yarn workspaces run test:ci",
"test:services:start": "docker-compose -f ./docker-compose.yaml up -d",
"test:services:stop": "docker-compose -f ./docker-compose.yaml down -v",
"website:build": "yarn workspace @keyv/website run build",
"clean": "rm -rf node_modules && rm -rf yarn.lock && yarn workspaces run clean"
},
"dependencies": {
"@types/node": "^20.3.1",
"webpack": "^5.87.0"
},
"devDependencies": {
"ava": "^5.3.1",
"c8": "^8.0.0",
"xo": "^0.54.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}