-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
122 lines (122 loc) · 3.02 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "bipbop",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "eslint . && stylelint assets/styles/*.scss && tsc --noEmit",
"prettier": "eslint . --fix && stylelint assets/styles/*.scss --fix"
},
"dependencies": {
"@ant-design/icons": "^4.2.1",
"@babel/core": "^7.0.0-0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@svgr/webpack": "^5.4.0",
"@types/lodash": "^4.14.150",
"@types/node": "^14.0.1",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"antd": "^4.3.1",
"dayjs": "^1.8.18",
"detectrtc": "^1.4.0",
"dotenv": "^8.2.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.5.0",
"jquery": "^3.5.0",
"js-sha256": "^0.9.0",
"less": "^3.11.2",
"localforage": "^1.7.3",
"lodash": "^4.17.15",
"lodash-decorators": "^6.0.1",
"mobx": "^5.15.4",
"mobx-react": "^6.2.2",
"next": "^9.4.4",
"prettier": "2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"sass": "^1.26.7",
"short-uuid": "^3.1.1",
"stylelint": "^13.5.0",
"stylelint-config-prettier": "^8.0.1",
"stylelint-order": "^4.0.0",
"stylelint-prettier": "^1.1.2",
"typescript": "^3.9.3"
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"prettier",
"sort-imports-es6-autofix"
],
"env": {
"browser": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"prettier",
"prettier/@typescript-eslint"
],
"ignorePatterns": [
"dist/*"
],
"rules": {
"prettier/prettier": "error",
"no-trailing-spaces": "error",
"eol-last": [
"error",
"always"
],
"sort-imports-es6-autofix/sort-imports-es6": "error"
},
"overrides": [
{
"files": [
"*.js"
],
"rules": {
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-var-requires": "off"
}
}
],
"settings": {
"react": {
"version": "detect"
}
}
},
"stylelint": {
"plugins": [
"stylelint-order"
],
"extends": [
"stylelint-prettier/recommended"
],
"rules": {
"order/order": [
"custom-properties",
"declarations"
],
"order/properties-alphabetical-order": true
}
},
"prettier": {
"printWidth": 100,
"trailingComma": "none"
}
}