-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.26 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.26 KB
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": "native-functions",
"version": "1.0.0",
"private": "true",
"scripts": {
"prepare": "husky install",
"lint": "eslint --ext js ./functions ./__tests__",
"prettier:base": "prettier --single-quote",
"prettier:check": "yarn prettier:base --list-different \"{functions,__tests__}/**/*.js\"",
"prettier:write": "yarn prettier:base --write \"{functions,__tests__}/**/*.js\"",
"test": "jest --coverage --config ./jest.config.js"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@betty-blocks/cli": "^26.0.2",
"@betty-blocks/jaws": "^1.2.4",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-angular": "^13.1.0",
"@commitlint/prompt-cli": "^16.2.3",
"@types/bun": "1.3.2",
"@types/jest": "^30.0.0",
"babel-jest": "^30.2.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-prettier": "^3.4.1",
"graphql": "^15.5.1",
"husky": "^7.0.2",
"jest": "^30.2.0",
"prettier": "^2.3.2",
"typescript": "^5.9.3"
},
"repository": {
"type": "git",
"url": "https://github.com/bettyblocks/native-functions.git"
}
}