This repository has been archived by the owner on Dec 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
135 lines (135 loc) · 4.26 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "reason-graphql-demo",
"private": true,
"version": "1.0.0",
"engines": {
"node": "10.x"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"clean": "bsb -clean-world",
"dev": "run-p -c dev:*",
"dev:reason": "bsb -make-world -w",
"dev:now": "next dev",
"build": "yarn clean && yarn build:reason && yarn build:next",
"build:reason": "bsb -make-world",
"build:next": "next build",
"start": "DISABLE_SERVERLESS=true NODE_ENV=production next start",
"now-build": "yarn build",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md,html,graphql}\"",
"lint": "run-p -c lint:*",
"lint:css": "stylelint '**/*.css'",
"lint:ts": "eslint '**/*.js{,x}' '**/*.ts{,x}'",
"typecheck": "tsc --noEmit",
"test": "NODE_ENV=test jest",
"test-watch": "NODE_ENV=test jest -o --watch",
"ci": "yarn typecheck && yarn lint && yarn test",
"storybook": "run-p -c storybook:*",
"storybook:reason": "yarn dev:reason",
"storybook:start": "start-storybook -p 6006",
"build-storybook": "yarn build:reason && build-storybook",
"snapshot-ui": "build-storybook && percy-storybook --widths=320,1280",
"e2e-build": "DISABLE_SERVERLESS=true yarn build",
"e2e-run": "yarn --cwd packages/e2e e2e",
"e2e": "yarn e2e-build && start-server-and-test start 3000 e2e-run",
"deploy": "scripts/deploy-ci.sh",
"deploy:production": "now --token $NOW_TOKEN --target production",
"deploy:staging": "now --token $NOW_TOKEN --target staging",
"update-graphql-schema": "yarn send-introspection-query http://localhost:3000/api/graphql"
},
"license": "ISC",
"dependencies": {
"@apollo/react-common": "3.1.3",
"@apollo/react-hooks": "3.1.3",
"@apollo/react-ssr": "3.1.3",
"@dblechoc/bs-apollo": "2.5.0",
"@dblechoc/bs-next": "0.22.0",
"apollo-cache-hermes": "0.8.10",
"apollo-client": "2.6.8",
"apollo-link": "1.2.13",
"apollo-link-error": "1.1.12",
"apollo-link-http": "1.5.16",
"apollo-server-micro": "2.9.15",
"apollo-utilities": "1.3.3",
"clsx": "1.0.4",
"graphql": "14.5.8",
"graphql-tag": "2.10.1",
"isomorphic-fetch": "2.2.1",
"next": "9.1.7",
"prop-types": "15.7.2",
"re-classnames": "4.1.0",
"react": "16.12.0",
"react-dom": "16.12.0",
"reason-react": "0.7.0"
},
"devDependencies": {
"@babel/core": "7.7.7",
"@babel/plugin-proposal-class-properties": "7.7.4",
"@baransu/graphql_ppx_re": "0.4.9",
"@percy-io/percy-storybook": "2.1.0",
"@storybook/addon-actions": "5.2.8",
"@storybook/addon-centered": "5.2.8",
"@storybook/addon-links": "5.2.8",
"@storybook/addon-viewport": "5.2.8",
"@storybook/addons": "5.2.8",
"@storybook/react": "5.2.8",
"@testing-library/jest-dom": "4.2.4",
"@testing-library/react": "9.4.0",
"@types/isomorphic-fetch": "0.0.35",
"@types/jest": "24.0.25",
"@types/react": "16.9.17",
"@typescript-eslint/eslint-plugin": "2.15.0",
"@typescript-eslint/parser": "2.15.0",
"@zeit/next-css": "1.0.1",
"autoprefixer": "9.7.3",
"awesome-typescript-loader": "5.2.1",
"babel-loader": "8.0.6",
"bs-platform": "7.0.1",
"eslint": "6.8.0",
"eslint-config-prettier": "6.9.0",
"eslint-plugin-cypress": "2.8.1",
"eslint-plugin-jest": "23.3.0",
"eslint-plugin-react": "7.17.0",
"gentype": "3.9.1",
"husky": "4.0.1",
"identity-obj-proxy": "3.0.0",
"jest": "24.9.0",
"jest-canvas-mock": "2.2.0",
"jest-fetch-mock": "3.0.1",
"jest-mock-console": "1.0.0",
"lint-staged": "9.5.0",
"next-offline": "4.0.6",
"next-transpile-modules": "2.3.1",
"now": "16.7.2",
"npm-run-all": "4.1.5",
"prettier": "1.19.1",
"start-server-and-test": "1.10.6",
"stylelint": "12.0.1",
"stylelint-config-recommended": "3.0.0",
"stylelint-config-standard": "19.0.0",
"typescript": "3.7.4",
"webpack": "4.41.5"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,css,md,html}": [
"yarn format",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn lint",
"post-commit": "git update-index -g"
}
}
}