forked from CUNYTechPrep/project-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 859 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 859 Bytes
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
{
"name": "api-backend",
"version": "1.0.0",
"description": "An api backend",
"main": "index.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cd client && npm install && npm run build"
},
"author": "Edgardo Molina",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"connect-flash": "^0.1.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-session": "^1.17.2",
"morgan": "^1.10.0",
"passport": "^0.5.0",
"passport-local": "^1.0.0",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4",
"redis": "^4.0.3",
"sequelize": "^6.11.0",
"stripe": "^8.191.0"
},
"devDependencies": {
"dotenv": "^8.2.0",
"nodemon": "^2.0.14"
},
"nodemonConfig": {
"ignore": [
"client/"
]
}
}