-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 870 Bytes
/
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
{
"name": "redux-algorithms",
"version": "0.0.1",
"description": "Algorithms implemented with redux.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:watch": "webpack -w",
"build": "webpack",
"serve": "browser-sync start --files \"dist/*.html, dist/*.js\" --server \"dist\"",
"start": "npm run build; npm run serve"
},
"author": "Julian Mazzitelli <[email protected]> (http://jmazz.me)",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.4.5",
"babel-loader": "^6.2.2",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"browser-sync": "^2.11.1",
"co": "^4.6.0",
"globby": "^4.0.0",
"html-webpack-plugin": "^2.8.1",
"webpack": "^1.12.13"
},
"dependencies": {
"redux": "^3.3.1"
}
}