-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.6 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 2.6 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
111
112
113
114
{
"name": "club-system.web",
"description": "Club System Web UI",
"version": "0.0.3",
"private": true,
"license": "GPL-3.0",
"author": {
"name": "Ömrüm Baki Temiz",
"email": "omrumbakitemiz@icloud.com",
"url": "http://github.com/omrumbakitemiz"
},
"contributors": [],
"keywords": [
"react"
],
"dependencies": {
"@material-ui/core": "^3.9.2",
"@material-ui/icons": "^3.0.2",
"axios": "^0.18.1",
"bootstrap": "^4.3.1",
"classnames": "^2.2.6",
"loaders.css": "^0.1.2",
"node-sass": "^4.11.0",
"prop-types": "^15.7.2",
"react": "16.8.2",
"react-dom": "16.8.2",
"react-loaders": "^3.0.1",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.5",
"reactn": "^1.0.0"
},
"scripts": {
"start": "react-scripts start",
"build": "NODE_PATH=src react-scripts build",
"test": "NODE_PATH=src react-scripts test",
"eject": "NODE_PATH=src react-scripts eject",
"lint": "eslint '**/*.{js,jsx}' --quiet",
"lint-fix": "eslint '**/*.{js,jsx}' --quiet --fix"
},
"proxy": "https://localhost:5001",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"babel-plugin-root-import": "^6.1.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"react-testing-library": "^5.8.0",
"jest-dom": "^3.1.2",
"husky": "^1.3.1",
"lint-staged": "^8.1.4",
"prettier": "^1.16.4",
"puppeteer": "^1.12.2"
},
"eslintConfig": {
"env": {
"jest": true,
"browser": true
},
"extends": [
"airbnb",
"plugin:prettier/recommended",
"prettier/react"
],
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": [
"error"
],
"no-console": "off",
"react/jsx-filename-extension": "off",
"react/prop-types": "off",
"react/forbid-prop-types": "off",
"react/require-default-props": "off",
"no-return-assign": [
2,
"except-parens"
],
"import/no-extraneous-dependencies": "off"
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 150
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md,jsx,scss}": [
"prettier --write",
"git add"
]
},
"babel": {
"plugins": [
[
"babel-plugin-root-import"
]
]
}
}