-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.11 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
{
"name": "serverless-node-typescript-starterkit",
"version": "1.0.0",
"description": "Serverless starter kit",
"main": "handler.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "tsnd --respawn -r @babel/register src/index.ts",
"start": "tsnd -r @babel/register src/index.ts",
"lint:staged": "lint-staged"
},
"author": "Jes Anub",
"license": "ISC",
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"pre-commit": "lint:staged",
"devDependencies": {
"@babel/cli": "^7.18.9",
"@babel/core": "^7.18.9",
"@babel/node": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-typescript": "^7.18.6",
"@babel/register": "^7.18.9",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"pre-commit": "^1.2.2",
"prettier": "^2.7.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
}
}