-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.68 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
56
57
{
"name": "morii-vtt",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build-server": "tsc --outDir dist",
"build-client": "cd src/client && yarn build-prod && cd ../..",
"server-dev": "ts-node-dev src/index.ts | npx pino-pretty -c -X message:cyan -U false",
"run-stack-dev": "yarn build-client && yarn server-dev",
"dev-client": "cd src/client && yarn dev",
"debug-dev": "DEBUG=* yarn server-dev",
"build-prod": "yarn install --frozen-lockfile && yarn build-client && yarn build-server",
"start-prod": "node dist/",
"run-prod": "yarn build-prod && yarn start-prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fjallnari/morii-vtt"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fjallnari/morii-vtt/issues"
},
"homepage": "https://github.com/fjallnari/morii-vtt#readme",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/jsonwebtoken": "^8.5.8",
"@types/luxon": "^2.3.0",
"@types/node": "^18.14.2",
"@types/passport": "^1.0.7",
"pino-pretty": "^9.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.5.2"
},
"dependencies": {
"@dice-roller/rpg-dice-roller": "^5.1.0",
"@types/express": "^4.17.13",
"axios": "^0.24.0",
"bcrypt": "^5.0.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"jsonwebtoken": "^9.0.0",
"luxon": "^2.5.2",
"mongodb": "^4.3.1",
"nanoid": "^3.0.0",
"pino": "^8.7.0",
"socket.io": "^4.5.4",
"ts-node": "^10.8.2"
}
}