This repository has been archived by the owner on Dec 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.76 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
{
"name": "statify",
"version": "1.0.0",
"description": "A node app to save Spotify stats",
"repository": {
"type": "git",
"url": "https://github.com/chypriote/statify.git"
},
"author": "NicolasT",
"license": "MIT",
"scripts": {
"start": "node statify.js",
"dev": "nodemon statify.js",
"build": "gulp build",
"lint": "eslint \"**/*.js\""
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.13.0",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"chalk": "^4.0.0",
"compression": "^1.7.4",
"connect-mongo": "^3.2.0",
"dotenv": "^8.2.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-flash": "^0.0.2",
"express-session": "^1.17.1",
"lusca": "^1.6.1",
"mongoose": "^5.9.10",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-spotify": "^1.1.0",
"pug": "^2.0.4"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"autoprefixer": "^9.7.6",
"babel-core": "^6.26.3",
"babel-preset-minify": "^0.5.1",
"browser-sync": "^2.26.7",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-imagemin": "^7.1.0",
"gulp-load-plugins": "^2.0.3",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^2.0.0",
"gulp-uglify": "^3.0.2",
"nodemon": "^2.0.3",
"postcss-color-function": "^4.1.0",
"postcss-custom-media": "^7.0.8",
"postcss-custom-properties": "^9.1.1",
"postcss-import": "^12.0.1",
"postcss-nested": "^4.2.1",
"postcss-preset-env": "^6.7.0",
"views-auto-reload": "^1.0.11"
},
"engines": {
"node": ">=8.11.3",
"npm": ">=5.6.0"
}
}