-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.28 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.28 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
41
42
{
"name": "wave-check",
"version": "0.0.1",
"main": "index.js",
"repository": "https://github.com/lshadler/wave-check.git",
"author": "wtait1, lshadler",
"license": "MIT",
"private": true,
"devDependencies": {
"@auto-it/conventional-commits": "9.61.0",
"@auto-it/git-tag": "9.61.0",
"@auto-it/released": "9.61.0",
"@commitlint/cli": "9.1.2",
"@commitlint/config-conventional": "9.1.2",
"@typescript-eslint/eslint-plugin": "3.10.1",
"@typescript-eslint/parser": "3.10.1",
"auto": "9.61.0",
"eslint": "7.32.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-prettier": "3.4.1",
"husky": "4.3.8",
"lerna": "3.22.1",
"lint-staged": "10.5.4",
"prettier": "2.8.8",
"shellcheck": "0.4.4"
},
"workspaces": [
"packages/*"
],
"scripts": {
"install": "lerna bootstrap",
"clean": "rm -rf node_modules",
"build": "lerna run build --stream --parallel",
"deploy": "lerna run deploy --scope=@wave-check/server --stream --parallel",
"start": "lerna run start --stream --parallel",
"test": "lerna run test --stream --parallel",
"lint": "eslint --fix --ext .ts --ext .js packages/**/src",
"release": "auto shipit"
}
}