-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.28 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
{
"name": "JSONofExile",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"start": "node dist/bundle.js",
"build": "webpack",
"dev": "set BABEL_DISABLE_CACHE=1 && nodemon src/index.js --exec babel-node -e js,gql --ignore client",
"dev-scrape": "set BABEL_DISABLE_CACHE=1 && set SCRAPING=1 && nodemon src/index.js --exec babel-node -e js,gql --ignore client",
"scrape": "babel-node src/scraper"
},
"dependencies": {
"apollo-server-express": "^1.3.6",
"axios": "^0.18.0",
"babel-cli": "^6.26.0",
"babel-plugin-graphql-tag": "^1.5.0",
"babel-preset-env": "^1.6.1",
"body-parser": "^1.18.2",
"cheerio": "^1.0.0-rc.2",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"graphql": "^0.13.2",
"graphql-tools": "^3.0.0",
"mongoose": "^5.0.16",
"qs": "^6.5.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-inline-import-loader": "^0.0.5",
"babel-loader": "^7.1.4",
"babel-plugin-inline-import": "^2.0.6",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2017": "^6.24.1",
"graphql-tag": "^2.9.2",
"nodemon": "^1.17.3",
"raw-loader": "^0.5.1",
"webpack": "^4.8.0",
"webpack-cli": "^2.1.3",
"webpack-node-externals": "^1.7.2"
}
}