-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.67 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
59
60
61
62
63
64
65
66
67
{
"name": "be-ka4j",
"description": "Web API for KA4J Apps",
"version": "1.0.0",
"main": "src/index.ts",
"author": {
"name": "Ionichi",
"email": "[email protected]"
},
"license": "MIT",
"engines": {
"node": ">=20.16.0",
"yarn": ">=1.22.22",
"npm": "please-use-yarn"
},
"scripts": {
"dev": "nodemon ./src/index.ts",
"build": "esbuild ./src/index.ts --bundle --platform=node --minify --sourcemap --outfile=dist/index.js",
"start": "yarn build && node dist/index.js",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write src",
"format:check": "prettier --check src"
},
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.19.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^22.1.0",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "7.16.0",
"@typescript-eslint/parser": "7.16.0",
"esbuild": "^0.23.0",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"supertest": "^7.0.0",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"./src/**/*.ts"
],
"exec": "node -r tsconfig-paths/register -r ts-node/register src/index.ts",
"ext": "ts, js"
}
}