-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.3 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
{
"name": "pennant-server",
"version": "1.0.0",
"description": "",
"source": "src/index.ts",
"main": "dist/index.js",
"scripts": {
"start": "tsc && node dist/index.js",
"dev": "MODE=development vite-node src/index.ts",
"postbuild": "cp -r ../client/dist ./dist",
"build": "npx tsc",
"dev:all": "concurrently \"npm run dev\" \"cd ../client && npm run dev\"",
"build:ui": "cd ../client && npm run build && cp -r dist ../server",
"deploy:full": "npm run build:ui && git add . && git commit -m uibuild && npm run deploy",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.369.0",
"@aws-sdk/lib-dynamodb": "^3.369.0",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.1",
"nodemailer": "^6.9.7",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.3",
"@types/node": "^20.6.2",
"@types/nodemailer": "^6.4.14",
"@types/uuid": "^9.0.4",
"concurrently": "^8.2.0",
"nodemon": "^3.0.1",
"typescript": "^5.2.2",
"vite-node": "^0.34.4"
}
}