-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
55 lines (55 loc) · 1.45 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
{
"name": "shimmiestack",
"version": "1.9.2",
"description": "A simple event sourced CQRS in-memory server framework.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"build:check": "tsc --noEmit",
"test": "npx jest",
"publish": "cp README.md dist && cp package-publish.json dist/package.json && npm run build && cd dist && npm publish"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/simon-o-matic/ShimmieStack"
},
"author": "Simon Raik-Allen",
"license": "MIT",
"dependencies": {
"@types/jest": "29.5.13",
"@types/supertest": "^6.0.2",
"async-lock": "^1.4.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "4.21.0",
"express-async-errors": "^3.1.1",
"ioredis": "^5.4.1",
"jest": "^29.7.0",
"pg": "^8.13.0",
"pg-format": "^1.0.4",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/pg-format": "^1.0.5",
"@types/async-lock": "^1.4.2",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/body-parser": "1.19.5",
"@types/node": "^22.5.5",
"@types/pg": "^8.11.10",
"@types/uuid": "^10.0.0",
"dotenv": "^16.4.5",
"tsc-watch": "^6.2.0",
"typescript": "^5.6.2"
}
}