-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.82 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
50
51
52
53
54
55
56
57
58
59
{
"name": "bookmarks_manager",
"version": "0.2.0",
"description": "Offline (using Dexie and IndexedDB) bookmarks manager for the browser",
"author": "Nikolas Poniros <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nponiros/bookmarks_manager"
},
"bugs": {
"url": "https://github.com/nponiros/bookmarks_manager/issues"
},
"homepage": "https://github.com/nponiros/bookmarks_manager#readme",
"dependencies": {
"immutability-helper": "2.1.1",
"material-ui": "0.16.7",
"react": "15.4.2",
"react-dom": "15.4.2",
"react-mui-speeddial": "0.0.6",
"react-redux": "5.0.2",
"react-tap-event-plugin": "2.0.1",
"redux": "3.6.0",
"redux-thunk": "2.2.0",
"sync-client": "1.0.0-beta.8"
},
"devDependencies": {
"babel-core": "6.22.1",
"babel-loader": "6.2.10",
"babel-plugin-transform-runtime": "6.22.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-react": "6.22.0",
"babel-preset-react-hmre": "1.1.1",
"css-loader": "0.26.1",
"eslint": "3.14.0",
"eslint-config-airbnb": "14.0.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "3.0.2",
"eslint-plugin-react": "6.9.0",
"html-webpack-plugin": "2.26.0",
"style-loader": "0.13.1",
"webpack": "2.2.0",
"webpack-dev-server": "2.2.0"
},
"scripts": {
"start": "webpack-dev-server --config ./conf/webpack.config.js",
"build": "webpack --config ./conf/webpack.config.js",
"build-prod": "webpack --config ./conf/webpack.prod.js",
"lint": "eslint --config ./conf/.eslintrc 'app/src/**/*.js' 'app/src/**/*.jsx'",
"lint:fix": "eslint --config ./conf/.eslintrc --fix 'app/src/**/*.js' 'app/src/**/*.jsx'"
},
"private": true,
"keywords": [
"bookmarks",
"offline",
"indexeddb",
"dexie"
]
}