-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.11 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "fantasy-draft-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"schema": "apollo schema:download --skipSSLValidation --endpoint=https://fantasy-draft-api.localhost.dev/graphql schema.json",
"generate": "graphql-codegen",
"lint": "eslint -c ./eslint-check.js 'source/scripts/**'",
"production": "webpack --env.NODE_ENV=production --env.API_URL=https://api.nfldraftpick.com/graphql && ./deploy.sh",
"start": "webpack -w --env.NODE_ENV=development --env.API_URL=https://fantasy-draft-api.localhost.dev/graphql"
},
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/react-hooks": "^3.1.3",
"@types/react-redux": "^7.1.7",
"apollo-boost": "^0.4.7",
"dotenv": "^8.2.0",
"graphql": "^14.5.8",
"graphql-tag": "^2.10.1",
"query-string": "^6.11.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-redux": "^7.2.0",
"react-router-dom": "^5.1.2",
"styled-components": "^4.4.1",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.11.2",
"@graphql-codegen/typescript": "^1.11.2",
"@graphql-codegen/typescript-operations": "^1.11.2",
"@types/react": "^16.9.13",
"@types/react-dom": "^16.9.4",
"@types/react-router": "^5.1.3",
"@types/react-router-dom": "^5.1.3",
"@types/styled-components": "^4.4.1",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"babel-eslint": "^10.0.3",
"copy-webpack-plugin": "^4.6.0",
"eslint": "^6.7.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.7.0",
"eslint-config-react-app": "^5.1.0",
"eslint-plugin-flowtype": "^3.13.0",
"eslint-plugin-graphql": "^3.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^1.7.0",
"prettify": "^0.1.7",
"sw-precache-webpack-plugin": "^0.11.5",
"ts-loader": "^6.2.1",
"typescript": "^3.7.2",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2"
}
}