-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.28 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
{
"name": "nodejs-playground",
"version": "0.1.0",
"description": "a playground for Node.js worker",
"license": "MIT",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"test": "jest --coverage --forceExit --detectOpenHandles --config ./test/jest.config.json",
"start:dev": "ts-node src/main.ts",
"start": "node main.js",
"release": "git checkout master && git pull origin master && TAG=$(node -p \"require('./package.json').version\") && git tag $TAG && git push origin $TAG"
},
"repository": {
"type": "git",
"url": "git+https://github.com/romiras/nodejs-playground.git"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"amqplib": "^0.8.0",
"dotenv": "^9.0.2",
"redis": "^4.0.0-rc.3",
"typescript": "^4.4.4"
},
"devDependencies": {
"@types/amqplib": "^0.8.2",
"@types/jest": "^27.0.2",
"@types/node": "^16.6.1",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.2.5",
"prettier": "^2.2.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"tsconfig-paths": "^3.11.0"
}
}