-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1011 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1011 Bytes
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
{
"name": "nodebar",
"version": "0.0.1",
"description": "",
"repository": "git@gitlab.hellbit.de:ichag/nodebar.git",
"main": "dist/index.js",
"scripts": {
"start": "nodemon --watch 'src/**/*.ts'",
"build": "tsc",
"test": "jest",
"coverage": "jest --coverage"
},
"author": "Max Hellwig",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.9.1",
"@types/moment": "^2.13.0",
"@types/node": "^11.15.44",
"@types/uuid": "^3.4.9",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"eslint": "^5.16.0",
"eslint-config-google": "^0.12.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"prettier": "1.16.4",
"ts-jest": "^24.3.0",
"ts-node": "^8.10.2",
"typescript": "3.5.1",
"winston": "^3.3.3"
},
"dependencies": {
"moment": "^2.29.1",
"uuid": "^3.4.0"
}
}