-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.3 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": "appsync-realtime-vanillajs",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"dependencies": {
"apollo-cache-inmemory": "^1.1.0",
"apollo-client": "^2.0.3",
"apollo-link": "^1.0.3",
"aws-appsync": "1.1.4",
"aws-sdk": "^2.141.0",
"es6-promise": "^4.1.1",
"graphql": "0.13.2",
"graphql-cli": "2.16.4",
"graphql-tag": "2.9.2",
"isomorphic-fetch": "^2.2.1",
"ws": "^3.3.1"
},
"devDependencies": {
"@creditkarma/graphql-validator": "0.5.0",
"babel-cli": "6.26.0",
"babel-preset-es2015": "6.24.1",
"eslint": "5.0.1",
"rimraf": "2.6.2",
"serverless-appsync-plugin": "1.0.1",
"webpack": "4.8.3",
"webpack-cli": "2.1.3",
"webpack-dev-server": "3.1.4"
},
"scripts": {
"build": "rimraf build/ && babel ./src --out-dir build/ --ignore ./node_modules,./.babelrc,./package.json,./npm-debug.log --copy-files",
"start": "npm run build && node build/index.js",
"start:web": "webpack-dev-server --mode development --content-base dist/",
"lint": "graphql-validator -s './schema/**/*.graphql' './queries/*.graphql'"
},
"repository": {
"type": "git",
"url": "ssh://git-codecommit.eu-west-1.amazonaws.com/v1/repos/appsync-realtime-vanillajs"
},
"author": "Andrew Griffiths",
"license": "ISC"
}