forked from witnet/data-feeds-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (50 loc) · 1.38 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
{
"name": "data-feeds-explorer",
"private": true,
"version": "1.0.0",
"description": "",
"main": "index.js",
"author": "",
"license": "GPL-3.0",
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "yarn lerna bootstrap",
"build": "yarn lerna run build --stream --concurrency 1",
"test": "yarn lerna run test --stream ",
"lint": "yarn lerna run lint --stream --concurrency 1",
"lint:check": "yarn lerna run lint:check --stream --concurrency 1",
"clean": "yarn lerna run clean --concurrency 4",
"prepare": "lerna run prepare",
"docker:build": "lerna run docker:build"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/config-lerna-scopes": "^11.0.0",
"commitlint": "^11.0.0",
"husky": "^4.3.0",
"lerna": "^3.22.1",
"prettier-standard": "^16.4.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.5.0",
"prettier": "^2.2.1",
"stylelint": "^13.9.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0"
},
"volta": {
"node": "14.15.4",
"yarn": "1.22.10"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}