-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.25 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
{
"name": "graphql-snapshot",
"version": "0.1.0",
"description": "Test and snapshot tool for verifying your GraphQL Api works",
"main": "dist/graphql-snapshot.js",
"scripts": {
"build:prod": "webpack --config config/webpack/webpack.prod.js",
"build:dev": "webpack --config config/webpack/webpack.dev.js",
"start": "webpack --config config/webpack/webpack.prod.js && node dist/graphql-snapshot.js",
"test": "./node_modules/.bin/jest --config config/jest/jest.config.js"
},
"author": "Taran Gill",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-typescript": "^7.3.3",
"apollo-server": "^2.8.1",
"apollo-server-testing": "^2.8.1",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"jest": "^24.9.0",
"jest-specific-snapshot": "^2.0.0",
"jest-transform-graphql": "^2.1.0",
"raw-loader": "^3.1.0",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.4",
"typescript": "^3.5.3",
"webpack": "^4.35.2",
"webpack-cli": "^3.3.5"
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"graphql": "^14.4.2",
"graphql-tag": "^2.10.1",
"json-to-graphql-query": "^1.9.0"
}
}