-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.8 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.8 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "Theyr",
"version": "1.0.0",
"type": "module",
"scripts": {
"postinstall": "node build-twine.js",
"start": "node login/index.js",
"dev": "nodemon login/index.js",
"build": "node build-twine.js",
"start:default": "cross-env STORY=default node login/index.js",
"start:topDown": "cross-env STORY=topDown node login/index.js",
"start:demo": "cross-env STORY=demo node login/index.js",
"dev:default": "cross-env STORY=default nodemon login/index.js",
"dev:topDown": "cross-env STORY=topDown nodemon login/index.js",
"dev:demo": "cross-env STORY=demo nodemon login/index.js",
"build:default": "node build-twine.js default",
"build:topDown": "node build-twine.js topDown",
"build:demo": "node build-twine.js demo",
"test": "playwright test",
"test:ui": "playwright test --ui",
"test:debug": "playwright test --debug",
"test:visual": "playwright test tests/multiplayer-visual.spec.js --headed --project=demo --reporter=list",
"report": "playwright show-report"
},
"keywords": [
"node",
"docker",
"localdev",
"nodemon"
],
"dependencies": {
"@discordjs/rest": "^0.5.0",
"axios": "^1.2.3",
"base-64": "^1.0.0",
"body-parser": "^1.20.0",
"discord.js": "^13.12.0",
"express": "^4.15.3",
"extwee": "^1.6.2",
"gaze": "^1.1.3",
"https": "^1.0.0",
"js-base64": "^3.7.5",
"lodash": "^4.17.21",
"mongoose": "^6.0.12",
"node-fetch": "^3.2.0",
"nodemon": "^2.0.15",
"puppeteer": "^24.34.0",
"redux": "^4.1.2",
"socket.io": "^4",
"string-hex": "^1.0.0",
"twine-utils": "^2.0.0",
"xhr2": "^0.2.1"
},
"devDependencies": {
"@playwright/test": "^1.58.1",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"nodemon": "^2.0.15",
"tweego-bin": "^0.4.0"
}
}