-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.85 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": "postcode-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc -p .",
"start": "npm run build && node dist/src/server.js",
"dev": "npm run build && nodemon index.js",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'tests/**/*.ts'",
"test-build": "docker compose up -d --build && env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'tests/**/*.ts'",
"lint": "eslint src/**/*.ts",
"lint-fix": "eslint --fix src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gokertanrisever/postcode-api.git"
},
"author": "Goker Tanrisever",
"license": "ISC",
"bugs": {
"url": "https://github.com/gokertanrisever/postcode-api/issues"
},
"homepage": "https://github.com/gokertanrisever/postcode-api#readme",
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/express": "^4.17.13",
"@types/formidable": "^2.0.4",
"@types/mocha": "^9.1.0",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"eslint": "^8.9.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"mocha": "^9.2.0",
"nodemon": "^2.0.15",
"prettier": "2.5.1",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"dependencies": {
"csv-parse": "^5.0.4",
"express": "^4.17.2",
"express-validator": "^6.14.0",
"formidable": "^2.0.1",
"helmet": "^5.0.2",
"mongoose": "^6.2.1",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.3.0",
"winston": "^3.6.0"
}
}