-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1008 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1008 Bytes
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": "drum-machine",
"version": "1.0.0",
"description": "Free Code Camp (Front End Libraries): Drum Machine",
"main": "index.js",
"scripts": {
"start": "parcel src/index.html -p 3000",
"build": "del /f /q docs && parcel build src/index.html -d docs --public-url ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/N-Nikolaev/drum-machine.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/N-Nikolaev/drum-machine/issues"
},
"homepage": "https://github.com/N-Nikolaev/drum-machine#readme",
"devDependencies": {
"@types/react": "^17.0.18",
"@types/react-dom": "^17.0.9",
"parcel-bundler": "^1.12.5",
"sass": "^1.38.0",
"typescript": "^4.3.5"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.15",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}