This repository was archived by the owner on Nov 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.52 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.52 KB
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
47
48
{
"name": "@medjaibot/server",
"version": "0.0.0",
"main": "index.js",
"repository": "git@github.com:MedjaiBot/Server.git",
"author": "Yannick Fricke <yannickfricke@googlemail.com>",
"license": "MIT",
"scripts": {
"build": "webpack --config ./configs/webpack/webpack.config.js",
"build:watch": "webpack --watch --config ./configs/webpack/webpack.config.js",
"commit": "git-cz",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"lint:fix": "tslint -c tslint.json 'src/**/*.ts' --fix",
"lint:watch": "chokidar './src/**/*.ts' -c 'node -e \"console.clear()\" && yarn lint' --initial",
"lint:fix:watch": "chokidar './src/**/*.ts' -c 'node -e \"console.clear()\" && yarn lint:fix' --initial",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@sentry/node": "^5.5.0",
"@types/dotenv": "^6.1.1",
"@types/jest": "^24.0.23",
"@types/node": "10",
"all-contributors-cli": "^6.11.0",
"chokidar": "^3.3.0",
"clean-terminal-webpack-plugin": "^2.0.5",
"commitizen": "^4.0.1",
"cz-conventional-changelog": "^3.0.2",
"imports-loader": "^0.8.0",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"ts-loader": "^6.1.2",
"tslint": "^5.20.1",
"typescript": "^3.7.2"
},
"dependencies": {
"@medjaibot/framework": "^1.3.1",
"dotenv": "^8.2.0",
"inversify": "^5.0.1",
"reflect-metadata": "^0.1.13",
"webpack-cli": "^3.3.9"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}