-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
90 lines (90 loc) · 2.84 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
{
"name": "github-client",
"version": "0.2.0",
"private": true,
"dependencies": {
"@ant-design/icons": "^4.2.2",
"@apollo/client": "^3.2.5",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@types/jest": "^24.9.1",
"@types/node": "^12.12.67",
"@types/react": "^16.9.52",
"@types/react-dom": "^16.9.8",
"antd": "^4.8.5",
"classnames": "^2.2.6",
"cross-domain-storage": "^2.0.7",
"dayjs": "^1.9.6",
"firebase": "^8.0.1",
"graphql": "^15.3.0",
"node-sass": "^4.14.1",
"normalize.css": "^8.0.1",
"query-string": "^6.13.7",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-markdown": "^5.0.3",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.3",
"react-syntax-highlighter": "^15.3.1",
"remark-gfm": "^1.0.0",
"tailwindcss": "^1.9.5",
"typescript": "^3.7.5",
"use-query-params": "^1.1.9"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "npm run react:test && npm run lint:test",
"react:test": "react-scripts test --watchAll=false",
"react:test--watch": "react-scripts test --watchAll=true",
"react:test--coverage": "react-scripts test --coverage",
"lint:test": "eslint src && stylelint **/*.scss",
"lint:fix": "eslint src --fix && stylelint **/*.scss --fix",
"eject": "react-scripts eject",
"deps:clean": "git clean -fxd",
"deps:reinstall": "npm run deps:clean && npm i",
"api:gen": "graphql-codegen -r dotenv/config",
"api:gen--watch": "graphql-codegen -r dotenv/config -w"
},
"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/add": "^2.0.1",
"@graphql-codegen/cli": "^1.18.0",
"@graphql-codegen/near-operation-file-preset": "^1.17.11",
"@graphql-codegen/typescript": "^1.17.11",
"@graphql-codegen/typescript-operations": "^1.17.8",
"@graphql-codegen/typescript-react-apollo": "^2.0.7",
"@graphql-eslint/eslint-plugin": "^0.4.2",
"@types/classnames": "^2.2.10",
"@types/react-router-dom": "^5.1.6",
"@types/react-syntax-highlighter": "^13.5.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-unicorn": "^23.0.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.2",
"prettier": "^2.1.2",
"stylelint": "^13.7.2",
"stylelint-config-recess-order": "^2.3.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.18.0"
}
}