forked from bettyblocks/native-functions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.14 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
{
"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.15.0",
"@babel/preset-env": "^7.15.0",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-angular": "^13.1.0",
"@commitlint/prompt-cli": "^16.2.3",
"@types/jest": "^27.4.0",
"babel-jest": "^27.0.6",
"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": "^27.0.6",
"prettier": "^2.3.2"
},
"repository": {
"type": "git",
"url": "https://github.com/bettyblocks/native-functions.git"
}
}