-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.21 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
{
"name": "nlp-chatty-coffee",
"version": "1.0.0",
"description": "NLP.js + Netlify Server Functions Demo.",
"scripts": {
"postinstall": "npm-recursive-install --rootDir=functions --production",
"prebuild": "rm -rf dist/",
"build": "cp -r src/ dist/",
"dev": "netlify dev",
"start": "serve src/ -l 4343"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jamerrone/nlp-chatty-coffee.git"
},
"keywords": [
"nlp",
"bot",
"chatbot",
"javascript",
"netlify"
],
"author": "James Peter Perrone Jefferies <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Jamerrone/nlp-chatty-coffee/issues"
},
"homepage": "https://github.com/Jamerrone/nlp-chatty-coffee#readme",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"netlify-cli": "2.12.0",
"prettier": "^1.19.1",
"recursive-install": "^1.4.0",
"serve": "^11.3.0"
}
}