-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.45 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.45 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
{
"name": "graphql_project",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:codingleo/tcc_graphql_project.git",
"author": "Leonardo Ribeiro <leoribeiro.dsgn@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "nodemon --exec babel-node src/index.js",
"build": "webpack",
"start": "node index.js"
},
"dependencies": {
"@babel/runtime": "^7.6.3",
"apollo-server": "^2.9.6",
"apollo-server-express": "^2.9.6",
"body-parser": "^1.19.0",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"graphql": "^14.5.8",
"morgan": "^1.9.1",
"pg": "^7.12.1",
"pg-hstore": "^2.3.3",
"sequelize": "^5.19.1",
"sequelize-cli": "^5.5.1"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.2",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.6.3",
"babel-loader": "^8.0.6",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"eslint": "^6.4.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"html-webpack-plugin": "^3.2.0",
"nodemon": "^1.19.2",
"webpack": "^4.41.1",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2"
},
"description": "My graphql project"
}