-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.45 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
{
"name": "web",
"version": "0.0.1",
"description": "episodehunter webpage",
"main": "index.js",
"scripts": {
"tsc": "tsc --noEmit",
"test": "jest --watch",
"test:ci": "npm run lint && jest --coverage",
"build": "NODE_ENV=production webpack --config webpack.prod.js",
"start": "webpack-dev-server --config webpack.dev.js",
"deploy": "npm run build && firebase deploy",
"generate": "graphql-codegen",
"lint": "eslint --ext .ts,.tsx,.graphql src",
"postinstall": "npm run generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/episodehunter/web.git"
},
"keywords": [
"episodehunter"
],
"author": "Oskar Karlsson <kontakta@oskarkarlsson.nu>",
"contributors": [
"Viktor Eriksson <me@viktoreriksson.se> (viktoreriksson.se)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/episodehunter/web/issues"
},
"homepage": "https://github.com/episodehunter/web#readme",
"devDependencies": {
"@babel/core": "7.12.10",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/plugin-proposal-optional-chaining": "7.12.7",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/preset-react": "7.12.10",
"@babel/preset-typescript": "7.12.7",
"@episodehunter/types": "3.1.0",
"@graphql-codegen/cli": "1.20.0",
"@graphql-codegen/typescript": "1.20.0",
"@graphql-codegen/typescript-operations": "1.17.13",
"@graphql-codegen/typescript-react-apollo": "2.2.1",
"@tjoskar/eslint-action": "github:tjoskar/eslint-action",
"@types/history": "4.7.8",
"@types/jest": "26.0.20",
"@types/react": "16.14.0",
"@types/react-dom": "16.9.9",
"@types/react-test-renderer": "16.9.3",
"@typescript-eslint/eslint-plugin": "4.14.0",
"@typescript-eslint/parser": "4.14.0",
"babel-loader": "8.2.2",
"eslint": "7.18.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-graphql": "4.0.0",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.22.0",
"file-loader": "6.2.0",
"graphql": "15.4.0",
"html-webpack-plugin": "4.5.1",
"jest": "26.6.3",
"prettier": "2.2.1",
"react-test-renderer": "16.13.1",
"ts-jest": "26.4.4",
"typescript": "4.1.3",
"webpack": "4.44.2",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.2",
"webpack-pwa-manifest": "4.3.0",
"worker-loader": "3.0.7"
},
"dependencies": {
"@apollo/client": "3.2.3",
"@episodehunter/utils": "1.1.5",
"@material-ui/core": "4.11.0",
"@material-ui/icons": "4.9.1",
"@sentry/browser": "5.26.0",
"@tjoskar/react-lazyload-img": "1.2.3",
"comlink": "4.3.0",
"date-fns": "2.16.1",
"firebase": "7.22.1",
"framer-motion": "2.9.1",
"fuse.js": "6.4.1",
"graphql-request": "3.1.0",
"idb-keyval": "3.2.0",
"immer": "7.0.9",
"rc-progress": "3.1.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"the-react-router": "1.2.1"
},
"jest": {
"transform": {
"^.+\\.(j|t)sx?$": "ts-jest"
},
"testRegex": "src/.*(__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"coverageDirectory": "./coverage/"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"semi": false,
"useTabs": false,
"tabWidth": 2,
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "avoid"
},
"eslintIgnore": [
"src/dragonstone.ts"
]
}