-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.29 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
{
"name": "expressots-stackblitz",
"version": "1.0.0",
"description": "StackBlitz template for ExpressoTS",
"author": "Richard Zampieri",
"private": true,
"license": "MIT",
"scripts": {
"dev": "tsx --watch --no-warnings src/main.ts",
"test": "jest",
"test:watch": "jest --watchAll",
"test:cov": "jest --coverage",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" --fix"
},
"keywords": [],
"dependencies": {
"@expressots/adapter-express": "3.0.0",
"@expressots/core": "3.0.0",
"@expressots/shared": "3.0.0",
"hbs": "4.2.0"
},
"devDependencies": {
"@expressots/cli": "3.0.0",
"@types/express": "4.17.21",
"@types/jest": "29.5.2",
"@types/node": "20.12.7",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"eslint": "8.42.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.0",
"jest": "^29.7.0",
"prettier": "3.2.5",
"supertest": "^7.0.0",
"ts-jest": "29.1.2",
"tsx": "4.19.2",
"typescript": "5.1.3"
},
"stackblitz": {
"startCommand": "npm run dev"
}
}