-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
106 lines (106 loc) · 3.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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "next-mui-starter",
"version": "1.0.0",
"description": "Example of Next.js with Relay Modern SSR",
"scripts": {
"dev": "RELAY_ENDPOINT=http://localhost:3000 next",
"build": "next build",
"start": "next start",
"relay": "relay-compiler --src ./ --exclude '**/.next/**' '**/node_modules/**' '**/test/**' '**/__generated__/**' --exclude '**/schema/**' --schema ./schema/schema.graphql --artifactDirectory __generated__",
"relay:watch": "yarn relay --watch",
"schema": "graphql get-schema -e dev",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"flow": "flow check",
"extract-intl": "node scripts/extract-intl",
"storybook": "start-storybook -c components/.storybook -p 9000",
"build-storybook": "build-storybook -c components/.storybook -o storybook"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn lint && yarn flow"
}
},
"lint-staged": {
"*.js": [
"eslint",
"flow focus-check",
"jest --passWithNoTests"
]
},
"author": "w01fgang<[email protected]>",
"license": "ISC",
"dependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.7.5",
"@changesets/cli": "^2.4.1",
"@date-io/luxon": "1.3.13",
"@formatjs/intl-relativetimeformat": "^4.5.4",
"@material-ui/core": "4.8.1",
"@material-ui/icons": "4.5.1",
"@material-ui/lab": "^4.0.0-alpha.32",
"@material-ui/pickers": "3.2.8",
"@material-ui/styles": "4.7.1",
"accepts": "^1.3.7",
"autosuggest-highlight": "^3.1.1",
"chart.js": "^2.9.3",
"clsx": "^1.0.4",
"cypress": "^3.8.1",
"dotenv": "8.2.0",
"dotenv-safe": "^8.2.0",
"dotenv-webpack": "1.7.0",
"eslint-plugin-cypress": "^2.8.1",
"eslint-plugin-graphql-fragments": "^0.0.2",
"eslint-plugin-relay-fragments": "^0.0.2",
"faunadb": "^2.10.2",
"graphql": "14.5.8",
"graphql-tools": "^4.0.6",
"intl": "^1.2.5",
"isomorphic-unfetch": "3.0.0",
"lodash": "^4.17.15",
"luxon": "1.21.3",
"material-ui-popup-state": "^1.5.1",
"next": "9.3.2",
"next-plugin-graphql": "^0.0.2",
"node-fetch": "^2.6.0",
"prop-types": "^15.7.2",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-input-mask": "^2.0.4",
"react-intl": "^3.9.3",
"react-load-script": "^0.0.6",
"react-relay": "8.0.0",
"relay-runtime": "8.0.0",
"storybook-addon-intl": "^2.4.1",
"trim-right": "1.0.1"
},
"devDependencies": {
"@babel/plugin-transform-flow-strip-types": "^7.7.4",
"@storybook/addon-actions": "^5.2.8",
"@storybook/addon-knobs": "^5.2.8",
"@storybook/addon-links": "^5.2.8",
"@storybook/react": "^5.2.8",
"babel-eslint": "10.0.3",
"babel-jest": "24.9.0",
"babel-plugin-inline-react-svg": "^1.1.0",
"babel-plugin-react-intl": "^5.1.13",
"babel-plugin-relay": "8.0.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"enzyme-to-json": "3.4.3",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.0.1",
"eslint-plugin-flowtype": "4.5.2",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.17.0",
"flow-bin": "0.114.0",
"flow-typed": "2.6.2",
"glob": "^7.1.6",
"graphql-cli": "3.0.14",
"husky": "^4.0.0-beta.5",
"jest": "24.9.0",
"lint-staged": "^9.5.0",
"relay-compiler": "8.0.0"
}
}