-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
42 lines (42 loc) · 1.28 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": "guitarstack",
"version": "1.0.0",
"description": "A browser-based guitar effect stack",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha -R spec -r test/setup.js --recursive",
"build": "./node_modules/browserify/bin/cmd.js -t [ babelify --presets [ react es2015 ] ] -g uglifyify src/app.js -o js/app.js",
"watch": "./node_modules/watchify/bin/cmd.js -t [ babelify --presets [ react es2015 ] ] src/app.js -o js/app.js -v -d",
"serve": "./node_modules/browser-sync/bin/browser-sync.js start --server --files='js/*' --files='css/*' --files=index.html --https"
},
"keywords": [
"guitar",
"stack",
"effects",
"stompbox",
"web-audio"
],
"author": "Luca Ongaro",
"license": "MIT",
"dependencies": {
"babel-preset-react": "^6.11.1",
"babelify": "^7.3.0",
"create-react-class": "^15.6.0",
"react": "^15.6.1",
"react-dom": "^15.6.1"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"browser-sync": "^2.13.0",
"browserify": "^13.0.1",
"chai": "^4.1.1",
"enzyme": "^2.9.1",
"mocha": "^3.5.0",
"react-test-renderer": "^15.6.1",
"sinon": "^3.0.0",
"sinon-chai": "^2.13.0",
"uglifyify": "^3.0.2",
"watchify": "^3.7.0"
}
}