-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.02 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
{
"name": "carousel",
"version": "0.0.1",
"description": "Carousel Demo for Patreon",
"repository": {
"type": "git",
"url": "https://github.com/AprilArcus/carousel.git"
},
"scripts": {
"start": "node server.js",
"browserify": "NODE_ENV=production PATH=$(npm bin):$PATH browserify scripts/index.jsx --extension=.jsx --transform [ babelify --optional runtime ] --global-transform [ uglifyify ] --outfile scripts/bundle.js",
"webpack": "PATH=$(npm bin):$PATH webpack --progress --colors --config webpack-production.config.js"
},
"author": "April Arcus <april.arcus@gmail.com> (http://github.com/aprilarcus)",
"license": "MIT",
"devDependencies": {
"babel": "^4.7.8",
"babel-loader": "^4.1.0",
"react-hot-loader": "^1.2.3",
"webpack": "^1.7.3",
"webpack-dev-server": "^1.7.0",
"browserify": "^9.0.3",
"babelify": "^5.0.4",
"uglifyify": "^3.0.1"
},
"dependencies": {
"babel-runtime": "^4.7.8",
"react": "^0.13.0",
"flux": "^2.0.1",
"immutable": "^3.6.4"
}
}