-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 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
44
{
"name": "mod-synth",
"version": "1.0.0",
"description": "MOD is a new Chrome Experiment where you can create your own modular synthesizer, or emulate different synths by simply drag and drop components.",
"author": "Lowww Ltd",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:andrevenancio/mod-synth.io.git"
},
"engines": {
"node": "12.0.0"
},
"scripts": {
"start": "grunt dev",
"build": "grunt",
"serve": "node ./server/index.js",
"heroku-postbuild": "npm run build",
"heroku-serve": "npm run serve"
},
"dependencies": {
"@hapi/hapi": "^19.1.1",
"@hapi/inert": "^6.0.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"grunt": "~0.4.5",
"grunt-cli": "^1.3.2",
"grunt-coffee-percolator-v2": "~0.2.4",
"grunt-contrib-clean": "~2.0.0",
"grunt-contrib-connect": "~2.1.0",
"grunt-contrib-copy": "~1.0.0",
"grunt-contrib-cssmin": "~3.0.0",
"grunt-contrib-rename": "~0.2.0",
"grunt-contrib-sass": "~1.0.0",
"grunt-contrib-uglify": "~4.0.1",
"grunt-contrib-watch": "~1.1.0",
"sass": "^1.26.8",
"uglify-js": "^3.6.0"
},
"devDependencies": {
"coffeescript": "^1.12.7"
}
}