-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.66 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
57
58
{
"name": "chatbot_frontend_comp0016",
"version": "1.0.0",
"description": "chatbot frontend app",
"main": "server.js",
"scripts": {
"start": "node src/server",
"dev": "nodemon server",
"test": "jest",
"test:coverage": "./node_modules/.bin/jest --config ./jest.config.js --coverage --passWithNoTests",
"test:e2e": "cd ./tests/e2e && cypress run",
"prettier": "./node_modules/.bin/prettier --write .",
"lint": "./node_modules/.bin/eslint ./src --fix-dry-run",
"docs:generate": "./node_modules/.bin/jsdoc ./src/* -d docs/out"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexhein189/chatbot_frontend_comp0016.git"
},
"author": "Team 18",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexhein189/chatbot_frontend_comp0016/issues"
},
"homepage": "https://github.com/alexhein189/chatbot_frontend_comp0016#readme",
"dependencies": {
"axios": "^0.21.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"moment": "^2.29.1",
"neo4j-driver": "^4.2.1",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"socket.io": "^3.0.3"
},
"devDependencies": {
"artillery-engine-socketio-v3": "^1.0.1",
"cypress": "^6.8.0",
"eslint": "^7.23.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"husky": "^4.2.3",
"jest": "^26.6.3",
"jsdoc": "^3.6.6",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.6",
"nyc": "^15.1.0",
"prettier": "2.2.1",
"sinon": "^10.0.0",
"socket.io-client": "^4.0.0",
"supertest": "^6.1.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier && npm run lint"
}
}
}