-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.73 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
{
"name": "dexs-analytics",
"version": "1.0.0",
"private": true,
"license": "Apache-2.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint '**/*.js' '**/*.ts' '**/*.tsx'",
"style-lint": "stylelint 'src/**/*.css'",
"type-check": "tsc --pretty --noEmit",
"format": "prettier src --write ."
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.1",
"dayjs": "^1.11.0",
"graphql": "^16.3.0",
"graphql-request": "^4.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.8",
"react-router-dom": "^6.3.0"
},
"devDependencies": {
"@types/node": "^17.0.23",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react": "^1.0.7",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"postcss": "^8.4.12",
"postcss-custom-media": "^8.0.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-mixins": "^9.0.2",
"postcss-preset-env": "^7.4.3",
"postcss-simple-vars": "^6.0.3",
"prettier": "^2.6.1",
"stylelint": "^14.6.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^7.0.0",
"typescript": "^4.5.4",
"vite": "^2.9.0"
},
"eslintConfig": {
"extends": [
"react-app",
"prettier"
],
"rules": {
"react/prop-types": 0,
"react/no-unescaped-entities": 0
},
"ignorePatterns": [
"node_modules",
"dist"
]
},
"prettier": {
"useTabs": false,
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"bracketSpacing": true,
"printWidth": 120
}
}