-
-
Notifications
You must be signed in to change notification settings - Fork 76
/
package.json
52 lines (52 loc) · 1.63 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
{
"name": "P-Brain.ai",
"version": "0.6.0",
"description": "NodeJS-powered AI assistant",
"main": "server.js",
"scripts": {
"test": "ava",
"lint": "./node_modules/.bin/eslint --ext .js ./ && ./node_modules/.bin/prettier --check '**/*.{js,json,md,html,css,yaml,yml}'",
"fix": "./node_modules/.bin/eslint --ext .js --fix ./ && ./node_modules/.bin/prettier --check --write '**/*.{js,json,md,html,css,yaml,yml}'"
},
"author": "Patrick Quinn",
"license": "GPLv3",
"repository": {
"type": "git",
"url": "https://github.com/patrickjquinn/P-Brain.ai"
},
"bugs": {
"url": "https://github.com/patrickjquinn/P-Brain.ai/issues",
"email": "[email protected]"
},
"dependencies": {
"basic-auth": "^2.0.1",
"cheerio": "^1.0.0-rc.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"express": "^4.17.1",
"html-entities": "^1.2.1",
"ip": "^1.1.5",
"json2csv": "^4.5.4",
"jsonwebtoken": "^9.0.0",
"md5": "^2.2.1",
"natural": "^0.6.3",
"node-fetch": "^2.6.0",
"socket.io": "^2.4.0",
"node-fetch": "^3.2.10",
"speakeasy-nlp": "^0.2.13",
"sqlite3": "^4.1.1",
"striptags": "^3.2.0",
"tabletojson": "^1.0.4",
"thunkify-wrap": "^1.0.4",
"words-to-num": "^0.2.0",
"x-ray": "^2.3.4"
},
"devDependencies": {
"ava": "^2.4.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^1.19.1",
"tmp": "^0.1.0"
}
}