-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 4.12 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 4.12 KB
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
{
"name": "typescript-monorepo",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": "=16"
},
"resolutions": {
"@types/react": "17.0.52",
"@types/react-dom": "17.0.18",
"ts-node": "10.9.1"
},
"dependencies": {
"@apollo/client": "3.7.1",
"@emotion/react": "11.10.5",
"@emotion/styled": "11.10.5",
"cross-fetch": "3.1.5",
"graphql": "15.8.0",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@babel/core": "7.20.5",
"@cypress/react": "5.12.5",
"@cypress/webpack-dev-server": "1.8.4",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.10",
"@storybook/addon-actions": "6.5.13",
"@storybook/addon-essentials": "6.5.13",
"@storybook/addon-links": "6.5.13",
"@storybook/builder-webpack5": "6.5.13",
"@storybook/manager-webpack5": "6.5.13",
"@storybook/react": "6.5.13",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "12.1.5",
"@tsconfig/recommended": "^1.0.1",
"@types/compression": "1.7.2",
"@types/express": "4.17.14",
"@types/jest": "27.5.2",
"@types/loadable__component": "5.13.4",
"@types/node": "16.18.4",
"@types/react": "17.0.52",
"@types/react-dom": "17.0.18",
"@types/react-router": "5.1.19",
"@types/react-router-dom": "5.3.3",
"@typescript-eslint/eslint-plugin": "5.45.0",
"@typescript-eslint/parser": "5.45.0",
"babel-loader": "8.3.0",
"css-loader": "6.7.2",
"cypress": "8.7.0",
"dedubcheck": "0.0.8",
"eslint": "8.28.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-graphql": "4.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest-dom": "4.0.3",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-testing-library": "5.9.1",
"html-webpack-plugin": "5.5.0",
"husky": "7.0.4",
"hygen": "6.2.11",
"jest": "27.5.1",
"lerna": "4.0.0",
"lint-staged": "11.2.6",
"mini-css-extract-plugin": "2.7.1",
"path": "0.12.7",
"prettier": "2.8.0",
"react-refresh": "0.14.0",
"source-map-loader": "3.0.2",
"speed-measure-webpack-plugin": "1.5.0",
"stylelint": "13.13.1",
"stylelint-config-standard": "22.0.0",
"ts-jest": "27.1.5",
"ts-loader": "9.4.2",
"tsconfig-paths-webpack-plugin": "3.5.2",
"typescript": "4.9.3",
"update-ts-references": "2.4.1",
"webpack": "5.75.0",
"webpack-bundle-analyzer": "4.7.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.11.1",
"webpack-monitor": "1.0.14",
"webpack-node-externals": "3.0.0"
},
"scripts": {
"start": "yarn workspace @typescript-monorepo/app start",
"start:server": "yarn workspace @typescript-monorepo/server start",
"lint": "yarn lint:js && yarn lint:json && yarn lint:css",
"lint:js": "eslint . --ext .js,.ts,.tsx --fix",
"lint:json": "prettier --write **/*.json",
"lint:css": "stylelint **/styles.tsx --fix",
"storybook": "lerna run docs:dev --parallel",
"clean": "lerna run clean --parallel",
"build": "tsc -b ./tsconfig.json",
"watch": "tsc -b ./tsconfig.json --watch",
"test": "yarn build && jest",
"test:watch": "yarn build && jest --watch",
"test:dependencies": "yarn dedubcheck",
"test:e2e": "yarn cypress open",
"postinstall": "update-ts-references",
"generate-schema": "npx apollo schema:download --endpoint=https://graphql-pokeapi.graphcdn.app/graphql schema.json",
"generate-types": "npx apollo codegen:generate --localSchemaFile=schema.json --target=typescript --includes=packages/app/**/**.tsx --tagName=gql --addTypename types"
}
}