-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.17 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
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "excali",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "ts-node ./lib/example/server.example.ts",
"lint": "eslint . --ext .ts",
"prepare": "husky install"
},
"lint-staged": {
"**/*.ts": [
"prettier --write --ignore-unknown"
],
"packages/**/*.json": [
"prettier --ignore-path ./.prettierignore --write"
],
"*.ts": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"keywords": [
"excali",
"typescript",
"nodejs",
"express",
"excalijs",
"nestjs",
"deno",
"http",
"web",
"framework",
"fast",
"api",
"rest",
"graphql",
"gql",
"apollo",
"server",
"microservice",
"microse"
],
"author": "recepkefeli",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.0",
"husky": "^8.0.0",
"lint-staged": "^13.2.0",
"prettier": "2.8.7",
"pretty-quick": "^3.1.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"dependencies": {
"@types/node": "^18.15.5",
"reflect-metadata": "^0.1.13"
}
}