-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 755 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 755 Bytes
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
{
"name": "testredux",
"version": "1.0.0",
"description": "Redux Todo",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"browserify":"echo '=> Browserify' && node_modules/.bin/browserify src/assets/js/components/todo.js -o ./src/dist/bundle.js -t [ babelify --presets [ es2015 react ] ]",
"build": "echo '=> building' && npm run browserify -s "
},
"keywords": [
"Redux"
],
"author": "Himanshu Saraswat",
"license": "ISC",
"devDependencies": {
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"redux": "^3.5.2"
},
"dependencies": {
"react": "^15.3.0",
"react-dom": "^15.3.0"
}
}