-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.47 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"$schema": "https://json.schemastore.org/package.json",
"name": "zeplo-sdk",
"version": "0.0.0-development",
"description": "A typed SDK for zeplo.io",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/saiichihashimoto"
},
"license": "MIT",
"main": "dist/client.js",
"types": "dist/client.d.ts",
"files": ["dist"],
"scripts": {
"prebuild": "rm -rf dist",
"build": "npx tsc --build --verbose",
"dev": "concurrently --prefix-colors \"auto\" npm:dev:*",
"dev:build": "tsc-watch --preserveWatchOutput",
"dev:test": "npm run test -- --watch",
"lint": "lint-staged --shell --verbose --diff \"4b825dc642cb6eb9a060e54bf8d69288fbee4904\" --no-stash",
"prepare": "is-ci || husky install",
"stryker": "stryker run",
"pretest": "rm -rf .stryker-tmp",
"test": "jest --color --cache"
},
"dependencies": {
"next": "15.0.3",
"secure-e2ee": "0.4.0",
"uuid": "11.0.3",
"zod": "3.23.8"
},
"devDependencies": {
"@cspell/eslint-plugin": "8.16.0",
"@jest/globals": "29.7.0",
"@standard-configs/prettier-plugin": "1.0.12",
"@stryker-mutator/core": "8.0.0",
"@stryker-mutator/jest-runner": "8.0.0",
"@stryker-mutator/typescript-checker": "8.0.0",
"@total-typescript/ts-reset": "0.6.1",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/lint-staged": "13.3.0",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "6.21.0",
"concurrently": "9.1.0",
"cross-env": "7.0.3",
"eslint": "8.56.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-fp": "2.3.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-jest-formatting": "3.1.0",
"eslint-plugin-lodash-fp": "2.2.0-a1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-promise": "7.1.0",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-typescript-sort-keys": "3.3.0",
"eslint-plugin-unicorn": "50.0.1",
"husky": "9.0.10",
"is-ci": "3.0.1",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"prettier": "2.8.8",
"prettier-plugin-sh": "0.12.8",
"semantic-release": "22.0.8",
"ts-jest": "29.2.5",
"tsc-watch": "6.2.1",
"typescript": "5.3.3"
},
"engines": {
"node": "^18.15.0"
}
}