-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.01 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
{
"name": "express-auction",
"version": "0.1.0",
"main": "index.js",
"scripts": {},
"keywords": [],
"author": "Francis Brito <[email protected]>",
"license": "UNLICENSED",
"description": "",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/better-sqlite3": "^7.6.11",
"@types/express": "^4.17.21",
"@types/luxon": "^3.4.2",
"@types/node": "^20.14.11",
"prettier": "^3.3.3",
"redis-memory-server": "^0.11.0",
"typescript": "^5.5.3",
"vitest": "^2.0.3"
},
"engines": {
"node": "~20.15.1"
},
"engineStrict": true,
"prettier": {
"plugins": [
"@trivago/prettier-plugin-sort-imports"
],
"importOrder": [
"^node:(.*)$",
"^vitest",
"<THIRD_PARTY_MODULES>",
"^[./]"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true
},
"dependencies": {
"better-sqlite3": "^11.1.2",
"express": "^4.19.2",
"ioredis": "^5.4.1",
"luxon": "^3.4.4",
"ulid": "^2.3.0"
}
}