-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·56 lines (56 loc) · 1.44 KB
/
package.json
File metadata and controls
executable file
·56 lines (56 loc) · 1.44 KB
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
{
"name": "backend-coding-test",
"version": "1.0.0",
"description": "A coding assessment for Xendit backend interviews",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"lint": "eslint --fix src/ tests/",
"test": "nyc mocha -r ts-node/register tests/api/**/*.ts",
"test:load": "artillery run",
"build": "rimraf ./build && tsc",
"start": "npm run build && node build/app.js",
"start:background": "npm run build && forever start build/app.js",
"stop:background": "forever stop build/app.js"
},
"keywords": [
"Xendit"
],
"author": "Bo",
"license": "ISC",
"dependencies": {
"config": "^3.3.6",
"express": "^4.17.1",
"knex": "^0.95.10",
"sqlite3": "^5.0.2",
"typescript": "^4.3.5",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/config": "0.0.39",
"@types/express": "^4.17.13",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.1",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"artillery": "^1.7.7",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.1",
"forever": "^4.0.1",
"mocha": "^6.2.3",
"nyc": "^15.1.0",
"pre-push": "^0.1.1",
"supertest": "^4.0.2",
"ts-node": "^10.2.1"
},
"pre-push": [
"lint",
"test"
]
}