-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.17 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.17 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
{
"name": "scoldings",
"version": "1.0.0",
"description": "An app to scold.",
"main": "server.js",
"scripts": {
"client": "npm run start --prefix client",
"server": "nodemon server",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"start": "node server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rshrj/scoldings.git"
},
"keywords": [
"Scold",
"Scoldings"
],
"author": "Rishi Raj <rishiraj.1012exp@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/rshrj/scoldings/issues"
},
"homepage": "https://github.com/rshrj/scoldings#readme",
"devDependencies": {
"concurrently": "^5.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^1.7.0",
"nodemon": "^2.0.2"
},
"dependencies": {
"acorn": "^7.1.1",
"bcryptjs": "^2.4.3",
"client": "file:client",
"config": "^3.3.0",
"express": "^4.17.1",
"express-validator": "^6.4.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.2"
}
}