-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.4 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": "course-market.github.io",
"version": "0.0.1",
"description": "W&M course market front-end",
"main": "index.js",
"browserify": {
"transform": [
"babelify"
]
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "budo ./index.js --serve=bundle.js --live --open -- -t [ babelify --presets [ es2015 react ] ] | garnish",
"build": "browserify --transform [ babelify --presets [ es2015 react ] ] --debug -p [ minifyify --map bundle.map.json --output bundle.map.json ] index.js -o bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/course-market/course-market.github.io.git"
},
"author": "Kelvin Abrokwa",
"license": "ISC",
"bugs": {
"url": "https://github.com/course-market/course-market.github.io/issues"
},
"homepage": "https://github.com/course-market/course-market.github.io#readme",
"dependencies": {
"babelify": "^7.2.0",
"immutable": "^3.7.6",
"ramda": "^0.19.0",
"react": "^0.14.3",
"react-addons-css-transition-group": "^0.14.3",
"react-dom": "^0.14.3",
"react-modal": "^0.6.1",
"react-redux": "^4.0.5",
"redux": "^3.0.5"
},
"devDependencies": {
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"budo": "^7.1.0",
"garnish": "^5.0.1",
"minifyify": "^7.1.0",
"redux-devtools": "^3.0.1",
"uglify-js": "^2.6.1"
}
}