-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.55 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
99
100
101
102
103
104
105
106
{
"name": "laid-back-vj",
"description": "Sit back and watch all of your favorite songs music videos",
"homepage": "https://ladbackvj.com",
"author": {
"name": "Khaliq Gant",
"email": "[email protected]",
"url": "https://github.com/khaliqgant"
},
"repository": {
"type": "git",
"url": "https://github.com/khaliqgant/"
},
"engines": {
"node": ""
},
"bin": {
"": ""
},
"scripts": {
"fix:tslint": "./node_modules/.bin/tslint --project ./tsconfig.json --fix --force",
"fix:prettier-eslint": "./node_modules/.bin/prettier-eslint **.ts --write",
"fix:eslint": "./node_modules/.bin/eslint --fix --ext .ts .; exit 0",
"fix": "./node_modules/.bin/run-p fix:tslint fix:prettier-eslint",
"fix:watch": "./node_modules/.bin/esw --fix --ext .ts . --watch",
"build:tsc": "./node_modules/.bin/tsc",
"build": "npm run fix && npm run build:tsc && npm run build:fe",
"build:watch:ts": "./node_modules/.bin/tsc -w",
"build:watch:fe": "./node_modules/.bin/webpack --progress --config ./webpack.config.js -w",
"build:watch:css": "./node_modules/.bin/gulp",
"build:watch": "./node_modules/.bin/run-p build:watch:ts build:watch:fe",
"build:fe:css": "./node_modules/.bin/gulp sass",
"build:fe:js": "./node_modules/.bin/webpack --progress --config ./webpack.config.js",
"build:fe": "npm run build:fe:js && npm run build:fe:css",
"clean": "./node_modules/.bin/rimraf **.js **.js.map",
"watch": "npm run clean && ./node_modules/.bin/run-p fix:watch build:watch",
"precommit": "npm run fix",
"serve": "./node_modules/.bin/nodemon app.js",
"serve:watch": "./node_modules/.bin/nodemon --inspect app.js",
"dev": "./node_modules/.bin/run-p build:watch:css fix:watch build:watch serve",
"dev:inspect": "./node_modules/.bin/run-p build:watch:css fix:watch build:watch serve:watch"
},
"dependencies": {
"body-parser": "^1.18.2",
"browser-request": "^0.3.3",
"cookie-parser": "^1.4.3",
"copy-to-clipboard": "^3.0.8",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"express-handlebars": "^3.0.0",
"geoip-lite": "^1.2.1",
"handlebars": "^4.0.11",
"lastfmapi": "^0.1.1",
"lodash": "^4.17.5",
"lodash-id": "^0.14.0",
"lowdb": "^1.0.0",
"moment": "^2.21.0",
"morgan": "^1.9.0",
"nodemon": "^1.17.2",
"q": "^1.5.0",
"request": "^2.85.0",
"rollbar": "^2.2.10",
"serve-favicon": "^2.4.5",
"spotify-web-api-node": "^2.5.0",
"youtube-node": "^1.3.2"
},
"devDependencies": {
"@types/async": "^2.0.48",
"@types/express": "^4.0.37",
"@types/geoip-lite": "^1.1.29",
"@types/moment": "^2.13.0",
"@types/node": "^8.10.11",
"@types/q": "^1.0.5",
"@types/request": "^2.0.5",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"eslint-watch": "^3.1.3",
"gulp": "^3.9.1",
"gulp-clean": "^0.3.2",
"gulp-clean-css": "^3.9.3",
"gulp-develop-server": "^0.5.2",
"gulp-mocha": "^4.3.1",
"gulp-sass": "^3.2.1",
"gulp-typescript": "^3.2.2",
"gulp-webpack": "^1.5.0",
"husky": "^0.14.3",
"mocha": "^4.0.1",
"npm-run-all": "^4.1.2",
"prettier-eslint-cli": "^4.7.0",
"rimraf": "^2.6.2",
"should": "^13.1.2",
"ts-loader": "^2.3.7",
"tslint": "^5.8.0",
"typescript": "^2.5.3",
"typescript-eslint-parser": "^11.0.0",
"typings": "^2.1.1",
"webpack": "^3.7.1"
},
"keywords": [
""
]
}