-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 895 Bytes
/
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
{
"name": "chord-site",
"version": "1.0.0",
"description": "chord piano guitar site",
"main": "app.js",
"scripts": {
"start": "node app.js",
"server": "nodemon app.js",
"client": "npm run start --prefix client",
"dev": "cross-env NODE_ENV=development concurrently \"npm run server\" \"npm run client\""
},
"keywords": [
"chord",
"piano"
],
"author": "Yaroslav Bondarets <yar.bondarets@gmail.com>",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.0",
"config": "^3.3.1",
"cross-env": "^7.0.2",
"express": "^4.17.1",
"express-validator": "^6.6.1",
"jsonwebtoken": "^8.5.1",
"materialize-css": "^1.0.0-rc.2",
"mongoose": "^5.10.1",
"node-sass": "^4.14.1",
"react-router-dom": "^5.2.0",
"styled-components": "^5.1.1"
},
"devDependencies": {
"concurrently": "^5.3.0",
"nodemon": "^2.0.4"
}
}