forked from anomalyco/sst
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 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
41
42
43
44
45
46
47
48
{
"name": "serverless-stack",
"version": "0.0.0",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"packages/cli/test/*"
],
"scripts": {
"lint": "eslint . --fix --ext .js,.ts",
"prettier": "prettier --write **/*.{js,ts,json,md}",
"changelog": "lerna-changelog",
"release": "lerna publish --force-publish",
"release-alpha": "lerna publish --force-publish --dist-tag alpha",
"clean": "lerna run clean",
"postinstall": "lerna run prepare --scope='{@serverless-stack/resources,@serverless-stack/cli,create-serverless-stack}'",
"test": "lerna run test --stream --scope=@serverless-stack/cli"
},
"repository": {
"type": "git",
"url": "https://github.com/serverless-stack/serverless-stack.git"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"eslint": "^7.16.0",
"husky": "^4.3.6",
"lerna": "^3.22.1",
"lerna-changelog": "^1.0.1",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"typescript": "^3.9.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,css,json,md}": [
"prettier --write"
],
"*.{js,ts}": [
"eslint --fix"
]
}
}