-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
36 lines (36 loc) · 1.08 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
{
"name": "Tabbie",
"description": "The missing tab manager for Chrome",
"private": true,
"main": "index.js",
"dependencies": {
"@bufferapp/redux-hover": "0.0.5",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.22.0",
"babelify": "^7.3.0",
"browserify": "^13.0.0",
"eslint": "^3.13.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"glob": "^7.1.1",
"node-zip": "^1.1.1",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-redux": "^5.0.1",
"react-router": "^3.0.2",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"uglify-js": "^2.7.5",
"url-parse": "^1.1.8",
"watchify": "^3.7.0"
},
"scripts": {
"build": "NODE_ENV=production browserify ./src/index.jsx --extension=jsx -t babelify | uglifyjs -c > bundle.js",
"start": "watchify ./src/index.jsx --extension=jsx -v -t babelify -o bundle.js",
"zip": "npm run build && node zip"
}
}