-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.03 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.03 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
{
"name": "spotifyapplemusicconverter",
"version": "1.0.0",
"description": "This is a spotify to apple music converter I am working on.",
"main": "index.js",
"dependencies": {},
"devDependencies": {
"concurrently": "^6.2.1",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"prettier": "^2.4.1"
},
"scripts": {
"build": "cd backend && npm i && cd ../frontend && npm i",
"client": "cd frontend && npm start",
"server": "cd backend && npm start",
"start": "concurrently \"npm run server\" \"npm run client\"",
"format": "prettier --config ./.prettierrc --write .",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joneb-dev/spotifyAppleMusicConverter.git"
},
"author": "jonathan botros",
"license": "ISC",
"bugs": {
"url": "https://github.com/joneb-dev/spotifyAppleMusicConverter/issues"
},
"homepage": "https://github.com/joneb-dev/spotifyAppleMusicConverter#readme",
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}