-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
79 lines (79 loc) · 1.94 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
{
"private": true,
"dependencies": {
"@sentry/browser": "^6.0",
"@types/react-select": "^4.0.17",
"@vitejs/plugin-react-refresh": "^1.3.5",
"bulma": "^0.9.0",
"bulma-extensions": "^6.2.5",
"classnames": "^2.3.1",
"easymde": "^2.15.0",
"html2canvas": "^1.0.0-rc.1",
"moment": "^2.24.0",
"pretty-bytes": "^5.6.0",
"react": "^17.0.1",
"react-activestorage-provider": "^0.8.0",
"react-big-calendar": "^0.33.6",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^17.0.1",
"react-dropzone": "^11.3.4",
"react-query": "^3.19.1",
"react-router-dom": "^5.2.0",
"react-select": "^4.3",
"react-simplemde-editor": "^5.0.1",
"sass": "^1.32.0",
"spraypaint": "^0.10.0",
"video-react": "^0.14.1",
"vite": "^2.4.3"
},
"devDependencies": {
"@types/html2canvas": "^1.0.0",
"@types/react": "^17.0.15",
"@types/react-big-calendar": "^0.33.1",
"@types/react-copy-to-clipboard": "^5.0.1",
"@types/react-dom": "^17.0.9",
"@types/react-router": "^5.1.16",
"@types/react-router-dom": "^5.1.8",
"eslint-config-prettier": "^8.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"typescript": "^4.3.5",
"vite-plugin-rewrite-all": "^0.1.2",
"vite-tsconfig-paths": "^3.3.13"
},
"scripts": {
"start": "vite",
"compile": "tsc --noEmit",
"prebuild": "npm run compile",
"build": "vite build --outDir build"
},
"eslintConfig": {
"extends": [
"prettier",
"react-app"
],
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": [
"warn",
{
"useTabs": false,
"trailingComma": "es5",
"tabWidth": 2,
"singleQuote": true,
"semi": false,
"printWidth": 120,
"arrowParens": "avoid"
}
]
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}