-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 927 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 927 Bytes
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
{
"name": "raid-shadow-legends-api",
"version": "0.0.0",
"description": "Little project to scrapping data from raid shadow legend blogs",
"main": "./server.js",
"scripts": {
"dev": "nodemon --exec 'node -r dotenv/config server.js'",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf dist && webpack"
},
"keywords": [
"node",
"javascript"
],
"author": "Sebastián Tamashiro",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"graphql": "^14.5.8",
"mongoose": "^5.7.12",
"node-cache": "^5.0.2"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"babel-loader": "^8.0.6",
"nodemon": "^2.0.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
}
}