-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
141 lines (141 loc) · 4.98 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
136
137
138
139
140
141
{
"name": "upframe.io",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "npm run gql:types && npm run build:quick",
"build:quick": "node scripts/build.js",
"format": "npm run lint:fix && npm run format:fix",
"format:check": "stylelint 'src/**/*.{css,scss,js,ts,jsx,tsx}' && prettier --check \"./**/*.{js,ts,jsx,tsx}\"",
"format:fix": "prettier --write \"./**/*.{js,ts,jsx,tsx}\"",
"gql:check": "npx apollo client:check",
"gql:types": "rm -rf src/gql/types && mkdir src/gql/types && npx apollo client:download-schema src/gql/types/schema.json && npx apollo client:codegen --target typescript --outputFlat src/gql/types && npx graphql-codegen && node src/gql/bundleTypes && prettier --write \"./src/gql/types/*.ts\"",
"lint": "npm run lint:check && npm run format:check",
"lint:check": "eslint . --ext .js,.ts,.jsx,.tsx --cache",
"lint:fix": "eslint . --ext .js,.ts,.jsx,.tsx --fix --cache",
"start": "npm run gql:types && npm run start:quick",
"start:quick": "node scripts/start.js",
"test": "node scripts/test.js"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"@apollo/client": "^3.0.0-rc.5",
"@sentry/browser": "^5.15.5",
"apollo-cache-inmemory": "^1.6.5",
"apollo-link": "^1.2.13",
"apollo-link-error": "^1.1.12",
"apollo-link-http": "^1.5.16",
"apollo-link-retry": "^2.2.16",
"apollo-link-ws": "^1.0.20",
"apollo-utilities": "^1.3.4",
"d3": "^5.16.0",
"fuse.js": "^5.0.7-beta",
"graphql": "^14.6.0",
"graphql-tag": "^2.10.3",
"idb": "^5.0.4",
"lodash": "^4.17.19",
"markdown-it": "^11.0.0",
"moment": "^2.24.0",
"react": "^16.7.0",
"react-app-polyfill": "^1.0.6",
"react-big-calendar": "^0.20.2",
"react-dom": "^16.7.0",
"react-helmet": "^5.2.1",
"react-router-dom": "^5.0.0",
"react-spring": "^8.0.27",
"styled-components": "^5.0.1",
"subscriptions-transport-ws": "^0.9.16",
"topojson-client": "^3.1.0"
},
"devDependencies": {
"@babel/core": "7.9.0",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@graphql-codegen/cli": "^1.12.2",
"@graphql-codegen/fragment-matcher": "^1.12.2",
"@graphql-codegen/introspection": "^1.15.4",
"@graphql-codegen/typescript": "^1.15.4",
"@graphql-codegen/typescript-resolvers": "^1.15.4",
"@svgr/webpack": "4.3.3",
"@types/jest": "^26.0.3",
"@types/lodash": "^4.14.157",
"@types/markdown-it": "^10.0.1",
"@types/node": "^14.0.14",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.8",
"@types/react-helmet": "^6.1.0",
"@types/react-router-dom": "^5.1.5",
"@types/resize-observer-browser": "^0.1.4",
"@types/styled-components": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"apollo": "^2.30.3",
"babel-eslint": "10.1.0",
"babel-jest": "^24.9.0",
"babel-loader": "8.1.0",
"babel-plugin-named-asset-import": "^0.3.6",
"babel-preset-react-app": "^9.1.2",
"browserslist": "^4.12.0",
"camelcase": "^5.3.1",
"case-sensitive-paths-webpack-plugin": "2.3.0",
"css-loader": "3.4.2",
"dotenv": "8.2.0",
"dotenv-expand": "5.1.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-loader": "3.0.3",
"eslint-plugin-flowtype": "4.6.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "^1.6.1",
"file-loader": "4.3.0",
"fs-extra": "^8.1.0",
"git-revision-webpack-plugin": "^3.0.6",
"html-webpack-plugin": "4.0.0-beta.11",
"husky": "^4.2.5",
"identity-obj-proxy": "3.0.0",
"jest": "24.9.0",
"jest-environment-jsdom-fourteen": "1.0.1",
"jest-resolve": "24.9.0",
"jest-watch-typeahead": "0.4.2",
"mini-css-extract-plugin": "0.9.0",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "5.0.3",
"pnp-webpack-plugin": "1.6.4",
"postcss-flexbugs-fixes": "4.1.0",
"postcss-loader": "3.0.0",
"postcss-normalize": "8.0.1",
"postcss-preset-env": "6.7.0",
"postcss-safe-parser": "4.0.1",
"prettier": "^2.0.5",
"puppeteer": "^3.0.2",
"react-dev-utils": "^10.2.1",
"resolve": "1.15.0",
"resolve-url-loader": "^3.1.2",
"sass-loader": "8.0.2",
"semver": "6.3.0",
"style-loader": "0.23.1",
"stylelint": "13.3.3",
"stylelint-config-css-modules": "2.2.0",
"stylelint-config-standard": "20.0.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-processor-styled-components": "1.10.0",
"stylelint-scss": "3.17.2",
"terser-webpack-plugin": "2.3.8",
"ts-jest": "^26.1.1",
"ts-pnp": "1.1.6",
"typescript": "^3.9.5",
"url-loader": "2.3.0",
"webpack": "4.42.0",
"webpack-dev-server": "3.11.0",
"webpack-manifest-plugin": "2.2.0"
}
}