-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 4.25 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "virtual-poster",
"version": "1.0.0",
"private": true,
"description": "",
"author": "Hiro Kai <fullerenec84@gmail.com>",
"scripts": {
"serve": "vue-cli-service serve",
"build": "yarn dev:api && vue-cli-service build && tsc && cp -r server/model/map_templates dist_server/server/model && cp server/virtual-poster.v1.yaml dist_server/server/",
"lint": "vue-cli-service lint --no-fix",
"db": "psql $(./node_modules/yaml-cli/libexec/yaml get app_config.yaml postgresql)",
"dev": "set NODE_ENV=development && nodemon -L >&2 | npm run serve",
"dev:api": "(rm -r api || true) && openapi2aspida -i server/virtual-poster.v1.yaml",
"init_data": "ts-node -O '{\"module\": \"commonjs\"}' server/initialize_data.ts",
"lint:fix": "vue-cli-service lint",
"nohup": "NODE_ENV=production forever start dist_server/server/socket_index.js >> nohup.socket.txt && forever start dist_server/server/index.js >> nohup.rest.txt",
"prod:log": "NODE_ENV=production DEBUG_LOG=1 ts-node -O '{\"module\": \"commonjs\"}' server/index.ts | pino-pretty",
"server": "nodemon --exec ts-node -r tsconfig-paths/register -O '{\"module\": \"commonjs\"}' server/index.ts | pino-pretty",
"socket": "nodemon --exec ts-node -r tsconfig-paths/register -O '{\"module\": \"commonjs\"}' server/socket_index.ts | bunyan -o short",
"socket:rs": "cd server-rust && cargo run --release --bin ws",
"socket:nohup": "sudo NODE_ENV=production NO_TLS=1 PORT=80 nohup node dist_server/server/socket_index.js > socket.nohup.out &",
"test": "NODE_TEST=1 jest --runInBand --forceExit"
},
"dependencies": {
"@aspida/axios": "^0.11.2",
"@types/ip": "^1.1.0",
"@types/jest": "^26.0.10",
"@types/js-yaml": "^3.12.5",
"@types/jsonwebtoken": "^8.5.0",
"@types/papaparse": "^5.0.3",
"@types/pino": "^6.3.0",
"@types/socket.io-client": "^1.4.34",
"@types/socket.io-emitter": "^3.1.0",
"@types/spdy": "^3.4.4",
"aws-sdk": "^2.740.0",
"axios": ">=0.21.1",
"bip39": "^3.0.2",
"blind-signatures": "^1.0.7",
"bulma": "^0.9.1",
"bunyan": "^1.8.12",
"core-js": "^3.6.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"dtrace-provider": "^0.8.8",
"express": "^4.17.1",
"fastify": "^3.0.3",
"fastify-cookie": "^4.0.2",
"fastify-multer": "^2.0.1",
"fastify-static": "^3.1.0",
"firebase": "^7.14.4",
"firebase-admin": "^8.12.1",
"firebaseui": "^4.5.0",
"ioredis": "^4.16.3",
"ip": "^1.1.5",
"js-yaml": "^3.14.0",
"jsbn": "^1.1.0",
"jsonwebtoken": "^8.5.1",
"jssha": "^3.1.0",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"openapi-validator-middleware": "^3.1.1",
"papaparse": "^5.2.0",
"pg-promise": "^10.5.6",
"pino": "^6.5.1",
"pino-pretty": "^4.0.3",
"polybooljs": "^1.2.0",
"shortid": "^2.2.15",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"socket.io-emitter": "^3.1.1",
"socket.io-redis": "^5.2.0",
"spdy": "^4.0.2",
"vue": "3.0.0",
"ws": "^7.3.1"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@types/bunyan": "^1.8.6",
"@types/cookie": "^0.4.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/ioredis": "^4.16.0",
"@types/lodash": "^4.14.161",
"@types/node": "^13.11.1",
"@types/shortid": "0.0.29",
"@types/socket.io": "^2.1.4",
"@types/socket.io-redis": "^1.0.25",
"@types/sticky-session": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0-0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^5.0.2",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^7.0.0-0",
"husky": "^4.2.5",
"jest": "^26.4.2",
"nodemon": "^2.0.3",
"openapi2aspida": "^0.12.0",
"prettier": "^1.19.1",
"prettier-eslint": "^9.0.1",
"ts-jest": "^26.1.3",
"ts-node": "^8.8.2",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.9.7",
"yaml-cli": "^1.1.8"
},
"husky": {
"hooks": {}
},
"license": "MIT"
}