-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.19 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
62
63
64
65
66
67
68
69
70
71
{
"name": "tilden",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"doc": "typedoc src",
"lint": "eslint './src/**/*.{js,ts,tsx}'",
"test": "jest --watch",
"test:ci": "jest --ci",
"codegen": "graphql-codegen --config codegen.yml"
},
"dependencies": {
"@auth0/nextjs-auth0": "^0.13.0",
"@danmarshall/deckgl-typings": "^4.1.11",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"babel-jest": "^26.0.1",
"d3-color": "^1.4.1",
"deck.gl": "^8.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"google-spreadsheet": "^3.0.11",
"googleapis": "^51.0.0",
"graphql": "^15.0.0",
"graphql-request": "^2.0.0",
"gtfs-realtime-bindings": "0.0.5",
"identity-obj-proxy": "^3.0.0",
"install": "^0.13.0",
"jest": "^26.0.1",
"next": "^9.4.2",
"next-absolute-url": "^1.2.2",
"nextjs-redirect": "^2.0.2",
"node-fetch": "^2.6.0",
"npm": "^6.14.5",
"prettier": "^2.0.5",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-map-gl": "^5.2.7",
"swr": "^0.2.2"
},
"devDependencies": {
"@graphql-codegen/cli": "1.15.0",
"@graphql-codegen/typescript": "1.15.0",
"@graphql-codegen/typescript-graphql-request": "^1.15.2",
"@graphql-codegen/typescript-operations": "^1.15.0",
"@graphql-codegen/typescript-resolvers": "^1.15.1",
"@testing-library/react": "^10.0.4",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.2",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.8",
"@types/react-test-renderer": "^16.9.2",
"@typescript-eslint/parser": "^2.31.0",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"hasura-cli": "^1.2.2",
"jest-mock-extended": "^1.0.8",
"react-test-renderer": "^16.13.1",
"typedoc": "^0.17.6",
"typescript": "^3.8.3"
}
}