-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.27 KB
/
package.json
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
{
"name": "donate-plasma",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"client-install": "npm install --prefix client",
"start": "babel-node server.js",
"server": "nodemon server.js --exec babel-node",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/user/projectname.git"
},
"author": "ShahrirarSarker",
"license": "ISC",
"bugs": {
"url": "https://github.com/user/projectname/issues"
},
"homepage": "https://github.com/user/projectname#readme",
"dependencies": {
"@material-ui/lab": "^4.0.0-alpha.58",
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"bcryptjs": "^2.4.3",
"concurrently": "^6.0.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.2"
},
"devDependencies": {
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"nodemon": "^2.0.7"
}
}