This repository has been archived by the owner on Aug 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.78 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
{
"name": "project-purple-planet",
"version": "1.0.0",
"description": "A simple, clean and lightweight personal project and task manager built using NodeJS, Express, Materialize, MySQL, HandlebarsJS and Sequelize.",
"main": "app.js",
"directories": {
"doc": "docs"
},
"scripts": {
"build:assets": "gulp compile",
"clean:build": "gulp clean",
"createDB": "node db/createDB",
"lint": "eslint './**/*.js' --quiet",
"start": "node app",
"test": "echo \"Warning: no test specified\" && exit 0",
"watch": "nodemon app",
"heroku-postbuild": "gulp compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidsaulrodriguez/project-purple-planet.git"
},
"keywords": [
"nodejs",
"repo-template",
"template",
"starter-repo",
"repo",
"starter"
],
"author": "David Saul Rodriguez II",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/davidsaulrodriguez/project-purple-planet/issues"
},
"homepage": "https://github.com/davidsaulrodriguez/project-purple-planet#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-handlebars": "^5.2.0",
"express-session": "^1.17.1",
"gulp-live-server": "0.0.31",
"helmet": "^4.4.1",
"jquery": "^3.5.1",
"materialize-css": "^1.0.0-rc.2",
"mysql-import": "^5.0.21",
"mysql2": "^2.2.5",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"sequelize": "^6.5.0"
},
"devDependencies": {
"del": "^6.0.0",
"eslint": "^7.19.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-concat": "^2.6.1",
"gulp-minify": "^3.1.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^4.1.0",
"gulp-sourcemaps": "^3.0.0",
"nodemon": "^2.0.7"
}
}