forked from underscope/garment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.1 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
{
"name": "@tailor-cms/garment-ws",
"type": "module",
"packageManager": "[email protected]",
"author": "Damir P. <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/underscope/garment.git"
},
"bugs": "https://github.com/underscope/garment/issues",
"sideEffects": false,
"scripts": {
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"build": "cd ./lib && pnpm build",
"dev": "docker compose -f docker-compose.dev.yaml up & node ./scripts/dev.js",
"seed": "node ./seed/setup/seed.js",
"clean": "node ./seed/setup/clean.js"
},
"dependencies": {
"aws-sdk": "^2.1691.0",
"dotenv": "^16.4.5",
"lodash": "^4.17.21"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@antfu/ni": "^0.23.0",
"@antfu/utils": "^0.7.10",
"@types/lodash": "^4.17.12",
"@types/node": "^22.7.7",
"bumpp": "^9.7.1",
"concurrently": "^9.0.1",
"eslint": "^9.13.0",
"execa": "^9.4.1",
"fkill": "^9.0.0",
"mime-types": "^2.1.35",
"pid-port": "^1.0.0",
"typescript": "^5.6.3"
}
}