-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 976 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
{
"name": "example-project",
"version": "1.0.5",
"description": "Example project using sqrs",
"main": "index.js",
"scripts": {
"start": "ts-node src/index.ts",
"test": "ts-node src/e2e.test.ts",
"lint": "tslint --project ./tsconfig.json 'src/**/*'"
},
"author": {
"name": "Rafał Kostrzewski",
"url": "https://github.com/rkostrzewski"
},
"files": [],
"license": "MIT",
"private": true,
"dependencies": {
"@brainhubeu/sqrs": "^1.0.3",
"@brainhubeu/sqrs-inversify": "^1.0.3",
"chalk": "^4.1.0",
"express": "^4.17.1",
"http-status-codes": "^1.4.0",
"inversify": "^5.0.1",
"sqlite3": "^4.2.0",
"typeorm": "^0.2.25",
"yup": "^0.29.1"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/supertest": "^2.0.9",
"@types/yup": "^0.26.37",
"supertest": "^4.0.2",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"typescript": "^3.9.5",
"utility-types": "^3.10.0"
}
}