-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.04 KB
/
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
33
34
35
36
37
38
39
40
{
"name": "root",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@changesets/changelog-github": "0.4.1",
"@changesets/cli": "2.17.0",
"@cloudflare/workers-types": "2.2.2",
"@trust/webcrypto": "0.9.2",
"@types/jest": "27.0.2",
"@types/node-fetch": "^2.5.12",
"@types/service-worker-mock": "2.0.1",
"jest": "27.2.4",
"jest-fetch-mock": "3.0.3",
"lerna": "4.0.0",
"node-fetch": "^2.6.1",
"prettier": "2.4.1",
"rimraf": "3.0.2",
"service-worker-mock": "2.0.5",
"ts-jest": "27.0.5",
"ts-node": "10.2.1",
"typescript": "4.4.3"
},
"dependencies": {
"@p-j/eapi-types": "1.0.0"
},
"scripts": {
"build": "lerna run build",
"changeset": "changeset",
"lint": "prettier --check '**/*.{ts,js,css,json}'",
"format": "prettier --write '**/*.{ts,js,css,json,md}'",
"lerna": "lerna",
"release": "yarn build && changeset publish",
"test": "lerna run test -- --passWithNoTests --ci --coverage"
},
"version": "0.0.0"
}