-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.04 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
45
46
{
"name": "react-training-koombea",
"version": "1.0.0",
"description": "React training basics",
"main": "index.js",
"browserify": {
"transform": [
"babelify"
]
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "browserify scripts/index.js -o build/index.js",
"watch": "watchify scripts/index.js -o build/index.js -dv",
"serve": "budo scripts/index.js:build/index.js -v --live -- -p errorify | garnish -v"
},
"keywords": [
"React",
"koombea"
],
"author": "Richard Roncancio",
"license": "ISC",
"devDependencies": {
"babel": "6.5.2",
"babel-preset-es2015": "6.9.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-0": "6.5.0",
"babelify": "7.3.0",
"browserify": "13.0.1",
"budo": "8.3.0",
"errorify": "0.3.1",
"garnish": "5.2.0",
"watchify": "3.7.0"
},
"dependencies": {
"react": "15.1.0",
"react-dom": "15.1.0",
"sort-by": "1.1.1"
}
}