-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.34 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
{
"name": "proxeus-typescript-boilerplate",
"version": "0.0.1",
"description": "TypeScript (Node.JS) boilerplate of Proxeus extension node",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.json && tsc-alias -p tsconfig.json",
"dev": "nodemon",
"start": "node dist/index.js"
},
"author": "Viacheslav Okhmak <[email protected]> (https://github.com/slavas490)",
"license": "GPL-3.0-or-later",
"dependencies": {
"axios": "^1.5.0",
"dotenv": "^10.0.0",
"fastify": "^4.23.1",
"fastify-plugin": "^3.0.1",
"pino-pretty": "^5.1.3",
"rimraf": "^5.0.1"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/jest": "^26.0.23",
"@types/node": "^15.14.9",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"eslint": "^7.29.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"husky": "^6.0.0",
"jest": "^29.7.0",
"lint-staged": "^11.0.0",
"nodemon": "^2.0.7",
"prettier": "^2.3.1",
"supertest": "^6.1.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.0.0",
"tsc-alias": "^1.8.7",
"typescript": "^4.9.5"
}
}