-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.11 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
{
"name": "zhichi",
"version": "1.0.0",
"description": "a customer support ticketing system",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "NODE_ENV=test mocha tests/**/*.js --timeout 10000 --exit",
"coverage": "nyc --reporter=lcov --reporter=text-lcov npm test",
"cypress:open": "node_modules/.bin/cypress open",
"cypress:dev": "node_modules/.bin/start-test http://localhost:3000/bootstrap.html cypress:open"
},
"author": "jumoke oladimeji",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"express-validator": "^6.4.0",
"faker": "^4.1.0",
"json2csv": "^5.0.0",
"morgan": "^1.9.1",
"mysql2": "^2.1.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"pg-hstore": "^2.3.3",
"sequelize": "^5.21.5",
"uuid": "^7.0.2",
"uuidv4": "^6.0.6"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cypress": "^4.2.0",
"eslint": "^6.8.0",
"nock": "^12.0.3"
}
}