-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1007 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1007 Bytes
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
{
"name": "nerdchatbot",
"version": "1.0.0",
"author": "Alan Balcazar",
"description": "A simple chatbot",
"private": true,
"prettier": "prettier-config-standard",
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon ./bin/www",
"test": "jest tests/ ",
"cypress:open": "cypress open"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"morgan": "~1.9.1",
"socket.io": "^4.4.1"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"cypress": "^9.5.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"prettier-config-standard": "^4.0.0",
"socket.io-client": "^4.4.1",
"supertest": "^6.2.2"
}
}