forked from Ecoblockchain/knowledge-map-search-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.42 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "knowledge-map-search-engine",
"version": "1.0.0",
"description": "Search engine for mind maps on the web",
"license": "MIT",
"contributors": [
{
"name": "Angelo Gazzola",
"email": "[email protected]",
"url": "https://github.com/nglgzz"
}
],
"repository": "nikitavoloboev/knowledge-map-search-engine",
"scripts": {
"clean-triggers": "replace-x '(https:\\/\\/my\\.)?mindnode\\.com\\/' '' triggers.js",
"clean-maps": "npm run clean-triggers && rm server/lookup.json maps/ -r",
"scrape": "npm run clean-maps; scrapy runspider spider.py -o server/lookup.json",
"update-maps": "npm run scrape && node updateTriggers.js",
"lint": "eslint .; sass-lint client/sass/* -v",
"build": "webpack",
"start": "npm run build && node server/index.js -p 3000",
"production": "NODE_ENV='production' webpack -p && NODE_ENV='production' node server/index.js -p 3000"
},
"dependencies": {
"axios": "^0.16.1",
"compression": "^1.6.2",
"express": "^4.15.3",
"react": "^15.5.4",
"react-autosuggest": "^9.0.1",
"react-dom": "^15.5.4",
"react-mindmap": "^1.3.0",
"react-redux": "^5.0.5",
"react-router-dom": "^4.1.1",
"redux": "^3.6.0",
"redux-logger": "^3.0.6",
"redux-promise-middleware": "^4.3.0",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.1",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^6.10.3",
"node-sass": "^4.5.0",
"postcss-loader": "^2.0.5",
"react-hot-loader": "next",
"replace-x": "^1.1.1",
"sass-lint": "^1.10.2",
"sass-loader": "^6.0.5",
"style-loader": "^0.17.0",
"webpack": "^2.5.1",
"webpack-dev-middleware": "^1.10.2",
"webpack-hot-middleware": "^2.18.0"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"babel": {
"presets": [
"es2015",
"react"
],
"plugins": [
"transform-object-rest-spread",
"transform-decorators-legacy"
]
}
}