-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.36 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
{
"private": true,
"name": "@uplift-agency/interview-frontend",
"version": "0.1.0",
"proxy": "http://localhost:5000",
"license": "UNLICENSED",
"scripts": {
"start": "npm-run-all -p start:js start:server",
"build": "react-scripts build",
"analyze": "source-map-explorer 'build/static/js/*.js' --html > report.html",
"test": "npm-run-all eslint prettier:check jest",
"jest": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"start:js": "react-scripts start",
"start:server": "node mock-node-server/index.js",
"eslint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"prettier:write": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,md,css,scss}\"",
"prettier:check": "prettier --list-different \"src/**/*.{js,jsx,ts,tsx,json,md,css,scss}\""
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 10",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md,css,scss}": [
"prettier --write"
]
},
"dependencies": {
"@apollo/client": "^3.3.6",
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"apollo-server-express": "^2",
"express": "^4",
"faker": "^4",
"graphql": "^15.4.0",
"lodash": "^4",
"react": "^16",
"react-dom": "^16",
"react-router-dom": "^5.2.0",
"react-scripts": "^3",
"typescript": "^3"
},
"devDependencies": {
"@types/jest": "^25",
"@types/lodash": "^4",
"@types/node": "^12",
"@types/react": "^16",
"@types/react-dom": "^16",
"@types/react-test-renderer": "^16",
"@typescript-eslint/eslint-plugin": "^2",
"@typescript-eslint/parser": "^2",
"eslint": "^6",
"eslint-config-airbnb": "^18",
"eslint-config-prettier": "^6",
"eslint-config-react-app": "^5",
"eslint-import-resolver-typescript": "^2",
"eslint-loader": "^3",
"eslint-plugin-graphql": "^3",
"eslint-plugin-import": "^2",
"eslint-plugin-jsx-a11y": "^6",
"eslint-plugin-prettier": "^3",
"eslint-plugin-react": "^7",
"eslint-plugin-react-hooks": "^1",
"husky": "^4",
"lint-staged": "^10",
"node-sass": "^4",
"npm-run-all": "^4",
"prettier": "^1",
"react-test-renderer": "^16",
"source-map-explorer": "^2"
},
"resolutions": {
"react-scripts/eslint-plugin-import": "^2.20.1"
}
}