-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.3 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
{
"name": "js-sequencer",
"version": "1.5.0",
"description": "JS Sequencer is an interactive sound board. This project was build to illustrate the capabilities of a web browser.",
"main": "app.js",
"author": "Elton Gonçalves Gomes",
"repository": {
"type": "git",
"url": "git+https://github.com/eltongonc/js-sequencer.git"
},
"keywords": [
"drum",
"machine",
"nodejs",
"drums",
"instruments",
"kit"
],
"scripts": {
"start": "concurrently 'npm:watch:server' 'npm:watch:scss' 'npm:build:js'",
"prod": "node app.js",
"build:js": "watchify ./public/js/script.js -o ./public/build/script.js",
"watch:server": "nodemon app.js",
"watch:scss": "node-sass -w ./public/scss/ -o ./public/build/"
},
"dependencies": {
"browserify": "^16.5.0",
"concurrently": "^5.3.0",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"livereload": "^0.8.2",
"ngrok": "^2.2.9",
"node-sass": "^5.0.0",
"nodemon": "^1.19.3",
"watchify": "^3.11.1"
},
"bugs": {
"url": "https://github.com/eltongonc/js-sequencer/issues"
},
"homepage": "https://github.com/eltongonc/js-sequencer#readme",
"license": "MIT"
}