-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.4 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.4 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
{
"name": "portfolio",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"engines": {
"node": "14.15.3",
"npm": "6.14.9"
},
"scripts": {
"start": "node src/index.js",
"start:server": "env-cmd -f .env nodemon --experimental-modules ./src/index.js",
"start:client": "npm start --prefix client",
"dev": "concurrently \"npm run start:server\" \"npm run start:client\"",
"seed:import": "env-cmd -f .env node src/db/seed.js --import",
"seed:delete": "env-cmd -f .env node src/db/seed.js --delete",
"heroku-prebuild": "NPM_CONFIG_PRODUCTION=false cd ./client && npm install && npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"autoprefixer": "^9.8.6",
"bcrypt": "^5.0.1",
"bson-objectid": "^2.0.1",
"cloudinary": "^1.25.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cookie-session": "^1.4.0",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"faker": "^5.5.3",
"jsonwebtoken": "^8.5.1",
"lodash.debounce": "^4.0.8",
"mongoose": "^5.12.0",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"postcss": "^7.0.35",
"slugify": "^1.5.3",
"streamifier": "^0.1.1",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.1.2"
},
"devDependencies": {
"concurrently": "^6.0.0",
"env-cmd": "^10.1.0",
"nodemon": "^2.0.7"
}
}