-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
106 lines (106 loc) · 2.47 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
103
104
105
106
{
"name": "dakara-client-web",
"version": "1.9.0-dev",
"description": "Web client for Dakara Project",
"repository": {
"type": "git",
"url": "git+https://github.com/DakaraProject/dakara-client-web.git"
},
"author": "Nadeflore, Neraste",
"license": "MIT",
"bugs": {
"url": "https://github.com/DakaraProject/dakara-client-web/issues"
},
"projectHomepage": "https://github.com/DakaraProject/dakara-client-web",
"private": true,
"proxy": "http://127.0.0.1:8000",
"dependencies": {
"classnames": "^2.3.1",
"dayjs": "^1.11.0",
"normalize.css": "^8.0.1",
"postcss": "^8.4.19",
"query-string": "^7.1.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-highlight-words": "^0.18.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.3.0",
"react-scripts": "^5.0.1",
"react-transition-group": "^4.4.2",
"redux": "^4.1.2",
"redux-localstorage": "^0.4.1",
"redux-thunk": "^2.4.1",
"sass": "^1.56.1",
"semver": "^7.3.5"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app",
"plugins": [
"simple-import-sort",
"import"
],
"rules": {
"simple-import-sort/imports": [
"error",
{
"groups": [
[
"^\\u0000"
],
[
"^@?\\w"
],
[
"^(actions|components|eventManagers|middleware|reducers|serverPropTypes|style|utils)"
],
[
"^"
],
[
"^\\."
]
]
}
],
"import/first": "error",
"import/newline-after-import": "error",
"import/no-duplicates": "error",
"max-len": [
"error",
{
"code": 88
}
],
"quotes": [
1,
"single"
]
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"customize-cra": "^1.0.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"react-app-rewired": "^2.2.1",
"stylelint": "^14.15.0",
"stylelint-config-sass-guidelines": "^9.0.1",
"stylelint-webpack-plugin": "^3.2.0"
}
}