-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.35 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
{
"name": "gqlsummitapi",
"version": "2.0.0",
"description": "Apollo graphql server for the Optimistic UI: Predicting the future presentation at 2019 GraphQL Summit",
"repository": "https://github.com/KennyHammerlund/gqlsummmitApi.git",
"author": "Kenny Hammerlund <Kenny.hammerlund@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"dev-win": "webpack --mode development --config webpack.local.js",
"dev": "webpack --mode development --config webpack.local.js",
"build": "rm -rf dist && webpack --mode production --config webpack.config.js",
"start": "node ./dist/server.js"
},
"dependencies": {
"@babel/core": "^7.5.5",
"apollo-server": "^2.8.1",
"apollo-server-express": "^2.8.1",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-import-graphql": "^2.6.2",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"firebase": "^6.4.2",
"firebase-admin": "^8.4.0",
"firebase-functions": "^3.2.0",
"graphql": "^14.4.2",
"graphql-import": "^0.7.1",
"graphql-iso-date": "^3.6.1",
"nodemon-webpack-plugin": "^4.0.8",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.6",
"webpack-merge": "^4.2.1",
"webpack-node-externals": "^1.7.2"
}
}