-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 958 Bytes
/
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
{
"name": "balbes",
"version": "0.0.3",
"description": "try to create not dummy node.js framework with serving requests via worker threads",
"main": "index.js",
"scripts": {
"start": "tsc -p tsconfig.json && node dist/src/app/main.js",
"build": "tsc -p tsconfig.json",
"start:dev": "nodemon src/app/main.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Pavlo Vuiko",
"license": "ISC",
"devDependencies": {
"@types/node": "^17.0.27",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"autocannon": "^7.8.1",
"dotenv": "^16.0.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.6.2",
"ts-node": "^10.7.0",
"tsconfig-paths": "^3.14.1",
"typescript": "^4.6.3"
},
"dependencies": {
"node-worker-threads-pool": "^1.5.1"
}
}