-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
49 lines (49 loc) · 1.44 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
47
48
49
{
"name": "webmemex",
"version": "0.1.0",
"description": "A read/write web browser",
"main": "app/index.html",
"scripts": {
"build-prod": "NODE_ENV=production browserify -g uglifyify --extension 'jsx' src/main.jsx | uglifyjs -m -c warnings=false > app/assets/main.js",
"build-dev": " browserify --extension 'jsx' src/main.jsx -o app/assets/main.js",
"watch": " watchify -v --extension 'jsx' src/main.jsx -o app/assets/main.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Gerben",
"license": "CC0-1.0",
"dependencies": {
"babel-polyfill": "^6.9.1",
"classnames": "^2.2.3",
"lodash": "^4.11.1",
"pouchdb": "^6.0.7",
"react": "^0.14.8",
"react-autosuggest": "^3.8.0",
"react-contenteditable": "git://github.com/Treora/react-contenteditable#userIsKing",
"react-dom": "^0.14.8",
"react-motion": "^0.4.3",
"react-redux": "^4.4.1",
"redux": "^3.3.1",
"redux-act": "^0.4.0",
"redux-pouchdb": "^0.1.1",
"redux-query-sync": "^0.1.6",
"redux-saga": "^0.10.4",
"redux-thunk": "^2.1.0"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"babelify": "^7.2.0",
"envify": "^3.4.1",
"uglify-js": "^2.7.3",
"uglifyify": "^3.0.3",
"watchify": "^3.7.0"
},
"browserify": {
"transform": [
"babelify",
"envify"
]
}
}