-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.24 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
{
"name": "lundi",
"version": "1.0.0",
"main": "dist/app.js",
"scripts": {
"build": "esbuild src/app.ts --bundle --sourcemap --platform=node --outfile=dist/app.js",
"build:watch": "esbuild src/app.ts --bundle --sourcemap --platform=node --outfile=dist/app.js --watch",
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch",
"dev": "concurrently -n \"build,type-check\" -c \"blue,green\" \"npm run build:watch\" \"npm run type-check:watch\"",
"start": "node dist/app.js",
"deploy:dev": "npm run build && NODE_ENV=development sls deploy --verbose --region ap-northeast-2",
"deploy:production": "npm run build && NODE_ENV=production sls deploy --stage production --verbose --region ap-northeast-2",
"push": "tsx src/push.ts",
"test": "vitest"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@slack/bolt": "^3.21.4",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@faker-js/faker": "^9.0.1",
"@types/node": "^22.5.4",
"concurrently": "^8.2.0",
"esbuild": "^0.19.0",
"serverless-dotenv-plugin": "^6.0.0",
"serverless-offline": "^13.8.0",
"tsx": "^4.0.0",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
}
}