-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 3.44 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
{
"name": "react-graphql-urql",
"homepage": "http://albertcito.github.io/react-graphql-urql",
"version": "0.1.0",
"private": true,
"dependencies": {
"@ant-design/icons": "^4.2.2",
"@testing-library/jest-dom": "^5.11.4",
"@types/react-router-dom": "^5.1.5",
"@urql/core": "^1.14.1",
"@urql/devtools": "^2.0.2",
"@urql/exchange-graphcache": "^3.3.3",
"antd": "^4.7.3",
"axios": "0.21.0",
"classnames": "^2.2.6",
"eslint": "^7.14.0",
"graphql": "^15.4.0",
"graphql-tag": "^2.11.0",
"intl-messageformat-parser": "^6.0.6",
"node-sass": "4.14.1",
"query-string": "^6.13.7",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-intl": "^5.8.1",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.1",
"typed-graphql-class": "^1.0.4",
"typescript": "4.1.2",
"urql": "^1.11.4",
"validatorjs": "^3.21.0"
},
"scripts": {
"build": "react-scripts build",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "concurrently \"npm:ts:css -- -w\" \"react-scripts start\"",
"test": "react-scripts test --env=jsdom-fourteen",
"test-ci": "concurrently \"npm:ts:css\" \"react-scripts test\"",
"test:ci": "CI=true concurrently \"npm:ts:css\" \"react-scripts test\"",
"test:watch": "concurrently \"npm:ts:css -- -w\" \"react-scripts test\"",
"ts:css": "tsm src/**/*.module.scss -s -c -p",
"lint:ts": "tsc && yarn lint:eslint",
"lint:eslint": "eslint --ext=jsx,ts,tsx 'src/**/*.{ts,tsx}'",
"lint:eslint-fix": "eslint --ext=jsx,ts,tsx 'src/**/*.{ts,tsx}' --fix",
"lint:css": "stylelint --syntax scss \"src/**/*.scss\"",
"lint:css-fix": "stylelint \"src/**/*.scss\" --fix",
"lint": "yarn run lint:ts && yarn run lint:css",
"codegen": "graphql-codegen --config codegen.yml"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@graphql-codegen/cli": "^1.19.3",
"@graphql-codegen/introspection": "1.18.1",
"@graphql-codegen/typescript": "1.18.1",
"@graphql-codegen/typescript-operations": "1.17.12",
"@graphql-codegen/typescript-urql": "^2.0.2",
"@testing-library/dom": "^7.24.1",
"@testing-library/react": "^11.0.2",
"@types/classnames": "^2.2.10",
"@types/jest": "^26.0.13",
"@types/node": "^14.6.4",
"@types/node-sass": "^4.11.0",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"@types/validatorjs": "^3.15.0",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"concurrently": "^5.0.2",
"eslint-config-airbnb-typescript": "12.0.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "24.1.3",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-unicorn": "23.0.0",
"gh-pages": "^3.1.0",
"react-test-renderer": "17.0.1",
"serve": "^11.3.0",
"stylelint": "^13.0.0",
"stylelint-config-css-modules": "^2.2.0",
"stylelint-config-standard": "20.0.0",
"typed-scss-modules": "3.4.0"
}
}