-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
{
"name": "wantez",
"version": "0.0.1",
"main": "index.js",
"repository": "[email protected]:tezosisrael/wantez.git",
"author": "Chaim Lev-Ari <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "yarn workspace web dev",
"create:db": "yarn workspace web create:db",
"format": "prettier --loglevel warn --write \"**/*.{js,css,md}\"",
"pull-env": "vercel env pull ./web/.env.local",
"posttest": "npm run format",
"lint": "eslint . --cache --fix",
"pretest": "npm run lint"
},
"workspaces": [
"web",
"contracts"
],
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"eslint": "^7.19.0",
"husky": "^4.3.8",
"lint-staged": ">=10.5.3",
"prettier": "^2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"dependencies": {},
"resolutions": {
"**/*/axios": "^0.21.1"
}
}