forked from sst/sst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 948 Bytes
/
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
{
"name": "serverless-stack",
"version": "0.0.0",
"license": "MIT",
"private": true,
"type": "module",
"workspaces": {
"packages": [
"packages/*",
"www"
]
},
"scripts": {
"watch": "tsc -b -w",
"build": "turbo run build --filter=!@serverless-stack/docs --filter=!@serverless-stack/console --filter=!@serverless-stack/cli-*",
"release": "yarn build && yarn changeset publish",
"release-snapshot": "./.changeset/snapshot",
"test": "turbo run test"
},
"repository": {
"type": "git",
"url": "https://github.com/serverless-stack/sst.git"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.4",
"@changesets/cli": "^2.22.0",
"prettier": "^2.2.1",
"turbo": "^1.2.8",
"typescript": "^4.6.2",
"vitest": "^0.12.7"
},
"lint-staged": {
"*.{js,ts,css,json,md}": [
"prettier --write"
],
"*.{js,ts}": [
"eslint --fix"
]
}
}