-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 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
{
"name": "serverless-parking-workshop-boilerplate",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "sst dev",
"build": "sst build",
"deploy": "sst deploy",
"remove": "sst remove",
"console": "sst console",
"typecheck": "tsc --noEmit",
"test": "sst load-config -- vitest run",
"eslint:fix": "eslint 'services' 'stacks' 'frontend' --quiet --ext .ts,.tsx,.js,.jsx,.json --fix",
"eslint": "eslint 'services' 'stacks' 'frontend' --quiet --ext .ts,.tsx,.js,.jsx,.json",
"graphql-codegen": "graphql-codegen --config codegen.yml"
},
"devDependencies": {
"@microsoft/eslint-plugin-sdl": "^0.2.0",
"sst": "2.24.1",
"aws-cdk-lib": "2.91.0",
"constructs": "10.2.69",
"@tsconfig/node16": "^1.0.3",
"@typescript-eslint/eslint-plugin": "5.33.0",
"@typescript-eslint/parser": "5.33.0",
"@graphql-codegen/cli": "^2.13.2",
"@graphql-codegen/typescript": "^2.7.3",
"@graphql-codegen/typescript-operations": "^2.5.3",
"eslint": "8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-security": "^1.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"prettier": "2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"typescript": "5.1.6",
"vitest": "^0.22.1"
},
"workspaces": [
"services",
"frontend"
]
}