-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.19 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.19 KB
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
{
"name": "keepr",
"version": "1.0.0",
"description": "An online inventory management web application.",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon app.js",
"compile:sass": "sass --watch scss:public/css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pierre120/keepr.git"
},
"keywords": [
"nodejs",
"express",
"ejs",
"javascript",
"html",
"css",
"mongodb",
"mongoose",
"inventory"
],
"author": "Airon John Cruz, Faith Juliamae Griffin, Pierre Vincent Hernandez",
"license": "ISC",
"bugs": {
"url": "https://github.com/Pierre120/keepr/issues"
},
"homepage": "https://github.com/Pierre120/keepr#readme",
"dependencies": {
"autoprefixer": "^10.4.4",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"bootstrap": "^5.1.3",
"connect-mongodb-session": "^3.1.1",
"dotenv": "^16.0.1",
"ejs": "^3.1.6",
"express": "^4.17.3",
"express-ejs-layouts": "^2.5.1",
"express-session": "^1.17.3",
"mongoose": "^6.3.4",
"postcss-cli": "^9.1.0"
},
"devDependencies": {
"nodemon": "^2.0.15",
"sass": "^1.50.0"
}
}