-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.98 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "discogs-wantlist-scraper-bot",
"version": "1.1.0",
"private": true,
"repository": "[email protected]:poloba/discogs-wantlist-scraper-bot.git",
"author": "Pol Escolar",
"scripts": {
"start": "yarn prod",
"build": "npm-run-all clean transpile",
"app": "node ./dist-app/bin/www",
"dev": "NODE_ENV=development npm-run-all build app",
"prod": "NODE_ENV=production npm-run-all build app",
"transpile": "babel ./app --out-dir dist-app",
"clean": "rimraf dist-app",
"watch:dev": "nodemon -I",
"test": "jest",
"prettier": "prettier --write '**/*.js' '**/*.json' '**/*.md'",
"docker:install": "yarn install && docker-compose build && docker-compose up -d && docker attach app",
"docker:up": "docker-compose up -d && docker attach app",
"docker:down": "docker-compose down",
"docker:start": "docker attach app",
"docker:build": "docker-compose build",
"docker:app": "docker-compose exec app bash",
"docker:db": "docker-compose exec db bash"
},
"dependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-async-to-generator": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.0",
"babel-plugin-syntax-async-functions": "^6.13.0",
"body-parser": "^1.19.0",
"chalk": "^4.0.0",
"configstore": "^5.0.1",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"express": "~4.16.1",
"figlet": "^1.4.0",
"http-errors": "~1.6.3",
"inquirer": "^7.1.0",
"morgan": "~1.9.1",
"mysql": "^2.18.1",
"node-cron": "^2.0.3",
"node-fetch": "^2.6.1",
"node-schedule": "^1.3.2",
"npm-run-all": "^4.1.5",
"ora": "^4.0.4",
"rimraf": "^3.0.2",
"telebot": "^1.3.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.3",
"jest": "^25.2.6",
"nodemon": "^2.0.2",
"prettier": "^2.0.2",
"pretty-quick": "^2.0.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"nodemonConfig": {
"exec": "yarn dev",
"watch": [
"app/*",
"public/*"
],
"ignore": [
"**/__tests__/**",
"*.test.js",
"*.spec.js"
]
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
[
"@babel/transform-runtime"
]
]
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/dist-server/"
]
}
}