-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (40 loc) · 1.41 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
{
"name": "GoGoTelegram",
"version": "1.0.0",
"description": "Inspect your telegram chats",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"compile": "babel server --out-dir dist --delete-dir-on-start --source-maps inline --copy-files",
"dev": "nodemon server --exec babel-node --config .nodemonrc.json | pino-pretty",
"dev:debug": "nodemon server --exec babel-node --config .nodemonrc.json --inspect | pino-pretty",
"test": "mocha --compilers js:@babel/register --exit",
"test:debug": "mocha --compilers js:@babel/register --inspect-brk --exit",
"lint": "eslint -c .eslintrc.json {server,test}/**",
"lint:fix": "eslint --fix -c .eslintrc.json {server,test}/**"
},
"dependencies": {
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"dotenv": "^6.0.0",
"express": "^4.16.4",
"pino": "^5.10.8",
"swagger-express-middleware": "^2.0.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"babel-eslint": "^8.2.2",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-plugin-import": "^2.14.0",
"eslint-config-airbnb-base": "^11.3.2",
"mocha": "^5.0.5",
"nodemon": "^1.18.4",
"pino-pretty": "^2.2.2",
"supertest": "^3.4.1"
},
"author": "Carmine DiMascio <[email protected]> (https://github.com/cdimascio)"
}