-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.7 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
{
"name": "kenya-api",
"version": "1.0.0",
"description": "API documenting information about country Kenya",
"repository": "https://github.com/developerphilo/kenya-api.git",
"main": "src/server.ts",
"scripts": {
"build": "yarn tsc",
"start": "yarn tsc && yarn node ./dist/server.js",
"dev": "yarn run build && yarn run concurrently \"yarn run build -w\" \"yarn nodemon\"",
"lint": "yarn eslint '*/**/*.ts' -c .eslintrc.js --ignore-path .eslintignore",
"test": "TEST_MODE=true mocha -r ts-node/register -r tsconfig-paths/register 'tests/api_tests/*.test.ts' --files --timeout 60000"
},
"keywords": [
"kenya-api"
],
"author": "John Philip <developerphilo@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.17",
"@types/mocha": "^10.0.1",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"concurrently": "^8.2.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.2.0",
"prettier": "^2.7.1",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^4.8.3"
},
"dependencies": {
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"nodemon": "^3.0.1"
},
"engines": {
"node": ">=16.9.0"
}
}