-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.4 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.4 KB
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
{
"name": "NESTrisStatsUI",
"version": "1.0.0",
"description": "",
"main": "app.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "tap test/**/*.test.js",
"start": "fastify start -l info app.js",
"dev": "fastify start -l info -P app.js",
"competition": "open ./public/competition_admin.html & node app_competition.js",
"asbuild:untouched": "asc assembly/index.ts --target debug --runtime full",
"asbuild:optimized": "asc assembly/index.ts --target release --runtime full -O3",
"asbuild": "npm run asbuild:untouched && npm run asbuild:optimized && cp -a build public/ocr",
"serve": "cd public && static-server -p 3000"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@assemblyscript/loader": "^0.14.8",
"@google-cloud/text-to-speech": "^3.1.0",
"better-sqlite3": "^7.1.0",
"bluebird": "^3.7.2",
"bufferutil": "^4.0.1",
"fastify": "^3.2.1",
"fastify-autoload": "^3.0.8",
"fastify-cli": "^2.2.0",
"fastify-formbody": "^4.0.3",
"fastify-plugin": "^2.3.0",
"fastify-static": "^3.2.0",
"lodash": "^4.17.20",
"play-sound": "^1.1.3",
"twitch": "^4.4.10",
"twitch-auth": "^4.4.10",
"twitch-chat-client": "^4.4.10",
"utf-8-validate": "^5.0.2",
"ws": "^7.3.1"
},
"devDependencies": {
"assemblyscript": "^0.14.8",
"static-server": "^2.2.1",
"tap": "^14.10.8"
}
}