-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
41 lines (41 loc) · 1.28 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
{
"name": "blockstore-action-functions",
"version": "1.0.0",
"scripts": {
"prepare": "husky install",
"lint": "eslint",
"prettier:base": "prettier --single-quote",
"prettier:check": "pnpm run prettier:base --list-different \"{functions,__tests__,isolate-tests}/**/*.js\"",
"prettier:write": "pnpm run prettier:base --write \"{functions,__tests__,isolate-tests}/**/*.js\"",
"fmt": "pnpm run --silent prettier:write",
"test": "vitest run",
"test:isolate": "bb functions test isolate-tests/",
"publish": "bb blocks publish"
},
"dependencies": {
"date-fns": "~2.29.3",
"lodash.groupby": "^4.6.0",
"sentence-splitter": "^5.0.0",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-angular": "^13.1.0",
"@commitlint/prompt-cli": "^16.2.3",
"@eslint/js": "^9.6.0",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "9.x",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vitest": "^0.5.4",
"globals": "^15.8.0",
"graphql": "^15.5.1",
"husky": "^7.0.2",
"prettier": "^3.3.2",
"vitest": "^1.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/bettyblocks/blockstore-action-functions.git"
}
}