forked from itsfalchion/SocialClub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 881 Bytes
/
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
{
"name": "socialclub",
"version": "1.0.0",
"description": "SocialClub Server/Wrapper/Bot/Docs all in one repository",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "tsc",
"docs:load": "node ./dist/Docs/index.js --load",
"docs:start": "node ./dist/Docs/index.js --start",
"docs:build": "node ./dist/Docs/index.js --build",
"server": "node ./dist/Server/index.js --start",
"bot": "node ./dist/Bot/index.js"
},
"author": {
"name": "Dennis Vriend",
"email": "dennisvriend@dennisvriend.nl",
"url": "https://socialclub.dennisvriend.nl/"
},
"license": "Apache 2.0",
"devDependencies": {
"@types/node": "^10.12.18",
"@types/node-fetch": "^2.1.4",
"@types/puppeteer": "^1.11.2"
},
"dependencies": {
"node-fetch": "^2.3.0",
"puppeteer": "^1.11.0"
}
}