-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.67 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
{
"name": "NikkuBot",
"version": "2.5.6",
"description": "fortnite?",
"engines": {
"node": "10.4"
},
"main": "main.js",
"scripts": {
"start": "npm run tsc:build && npm run start:raw",
"start:clean": "npm run clean && npm run start",
"start:raw": "cross-env NODE_ENV=PRODUCTION NODE_PATH=./src node main.js",
"start:dev": "cross-env NODE_ENV=DEVELOPMENT NODE_PATH=./src ts-node main",
"start:hot": "nodemon -e ts --exec npm run start:dev",
"test": "npm run tsc && cross-env NODE_ENV=TEST NODE_PATH=./src ts-mocha test/**/*.ts --exit",
"clean": "del /s .\\src\\*.js && del /s .\\test\\*.js",
"tsc": "tsc",
"tsc:build": "tsc --build",
"tsc:watch": "tsc --build --watch",
"tslint:fix": "tslint --fix -c tslint.json 'src/**/*{.ts,.tsx}'"
},
"repository": "git+https://github.com/aXises/fortniteBot",
"author": "aXises",
"license": "MIT",
"dependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/mongodb": "^3.1.14",
"@types/mongoose": "^5.3.1",
"@types/node": "^10.12.9",
"@types/winston": "^2.4.4",
"audit": "0.0.6",
"cleverbot-free": "^1.0.3",
"cleverbot.io": "^1.0.4",
"cross-env": "^5.2.0",
"discord.js": "^11.4.2",
"dotenv": "^6.1.0",
"ffmpeg-binaries": "^3.2.2",
"linkifyjs": "^2.1.9",
"moment": "^2.22.2",
"moment-duration-format": "^2.2.2",
"mongodb": "^3.5.5",
"mongoose": "^5.9.7",
"request": "^2.88.0",
"ts-mocha": "^2.0.0",
"ts-node": "^8.0.2",
"typegoose": "^5.6.0",
"typescript": "^3.3.3",
"winston": "^3.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^5.2.0",
"tslint": "^5.12.1"
}
}