-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.23 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
{
"name": "apr-service",
"type": "module",
"version": "1.0.0",
"main": "src/app.ts",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "yarn build && node --experimental-specifier-resolution=node dist/app.js",
"dev": "nodemon --watch './**/*.ts' --exec 'node --experimental-specifier-resolution=node --loader ts-node/esm' src/app.ts",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:coverage": "yarn test --coverage",
"lint": "eslint --fix src",
"prettier": "prettier --write src",
"dependencies": "yarn upgrade-interactive --latest",
"prepare": "husky install"
},
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^7.32.0",
"husky": "^8.0.3",
"jest": "^27.3.1",
"lint-staged": "^13.2.0",
"nodemon": "^2.0.15",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}