-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.06 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
{
"name": "backend-coding-test",
"version": "1.0.0",
"description": "A coding assessment for Xendit backend interviews",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "npm run lint && nyc mocha tests",
"start": "nodemon index.js",
"lint": "eslint --fix src/",
"test:load": "artillery run load-test.yml"
},
"keywords": [
"Xendit"
],
"author": "Bo",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.16.4",
"faker": "^5.1.0",
"helmet": "^4.1.1",
"http-status-codes": "^2.1.4",
"sqlite3": "^4.0.6",
"swagger-ui-express": "^4.1.4",
"validator": "^13.1.17",
"winston": "^3.3.3"
},
"devDependencies": {
"artillery": "^1.6.1",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^4.3.0",
"mocha": "^6.1.4",
"nodemon": "^2.0.6",
"nyc": "^15.1.0",
"sinon": "^9.2.1",
"supertest": "^4.0.2"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
}
}