-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.37 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.37 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
{
"name": "edmeda",
"version": "1.0.0",
"engines": {
"node": "16.7.0"
},
"description": "Easy remote communication & collaboration for Schools",
"scripts": {
"start": "node server/app.js",
"heroku-postbuild": "npm install && cd client && npm install && npm run build",
"dev": "nodemon server/app.js",
"server": "nodemon server/app.js",
"client": "cd client && npm run start",
"build:client": "cd client && npm run build",
"iall": "npm i && cd client && npm i",
"startboth": "npm run server & npm run client",
"seed": "node ./server/scripts/seed.js",
"itest": "cd client && npx cypress open"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^7.31.0",
"eslint-plugin-import": "^2.23.4",
"nodemon": "^2.0.7",
"prettier": "2.2.1",
"stylelint-config-idiomatic-order": "^8.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^24.0.0",
"stylelint-order": "^5.0.0"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"faker": "^5.5.3",
"gender-detection": "^0.1.0",
"jshint": "^2.13.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongoose": "^5.13.4",
"mongoose-paginate-v2": "^1.4.1",
"socket.io": "^4.1.3",
"underscore": "^1.13.1"
}
}