-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.65 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.65 KB
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": "liveapi",
"version": "0.0.3",
"description": "LiveAPI: A few-click-install, end-to-end scraping server",
"scripts": {
"prestart": "pgrep mongod || (mkdir -p db/data && mkdir -p db/logs && mongod --dbpath db/data --fork --logpath db/logs/mongodb.log)",
"start": "nodemon server/server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --colors -w",
"go": "./bin/start.sh",
"update": "./bin/start.sh -f"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Live-API/LAS.git"
},
"author": "LiveAPI",
"license": "ISC",
"bugs": {
"url": "https://github.com/Live-API/LAS/issues"
},
"homepage": "https://github.com/Live-API/LAS#readme",
"dependencies": {
"axios": "^0.16.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.17.2",
"commander": "^2.11.0",
"cookie-parser": "^1.4.3",
"crawler": "^1.0.5",
"express": "^4.15.3",
"mongodb": "^2.2.30",
"mongoose": "^4.11.4",
"path": "^0.12.7",
"pug": "^2.0.0-rc.2",
"react": "^15.6.1",
"react-copy-to-clipboard": "^5.0.0",
"react-dom": "^15.6.1",
"semantic-ui-react": "^0.71.2",
"webpack": "^3.4.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"nodemon": "^1.11.0",
"react-hot-loader": "^1.3.1",
"webpack-dev-middleware": "^1.11.0"
},
"babel": {
"plugins": [
"transform-async-to-generator"
]
}
}