-
Notifications
You must be signed in to change notification settings - Fork 88
/
package.json
108 lines (108 loc) · 2.83 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
{
"name": "snowb-bmf",
"version": "1.1.0",
"private": true,
"homepage": "https://snowb.org/",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"format": "prettier --write src/**/*.{ts,js,tsx,css} types/**/*.ts",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"lint:fix": "yarn lint --fix",
"pb": "node scripts/createProtucol.js",
"predeploy": "sentry-cli login && node scripts/build.js",
"deploy": "gh-pages -d build",
"postdeploy": "node scripts/sentry.js"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.1",
"@mui/material": "^5.14.1",
"@mui/styled-engine": "^5.13.2",
"@mui/styles": "^5.14.1",
"@sentry/react": "^7.59.2",
"ajv": "^8.12.0",
"clsx": "^2.0.0",
"color": "^4.2.3",
"file-saver": "^2.0.5",
"hotkeys-js": "^3.11.2",
"jszip": "^3.10.1",
"mobx": "^6.10.0",
"mobx-react-lite": "^4.0.3",
"mobx-utils": "^6.0.7",
"notistack": "^3.0.1",
"opentype.js": "^1.3.4",
"protobufjs": "^7.2.4",
"react": "^18.2.0",
"react-color": "^2.19.3",
"react-dom": "^18.2.0",
"rectangle-packer": "^0.0.9",
"requestidlecallback": "^0.3.0",
"workbox-core": "^7.0.0",
"workbox-expiration": "^7.0.0",
"workbox-precaching": "^7.0.0",
"workbox-routing": "^7.0.0",
"workbox-strategies": "^7.0.0"
},
"devDependencies": {
"@sentry/cli": "^1.68.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/color": "^3.0.1",
"@types/file-saver": "^2.0.1",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/opentype.js": "^1.3.3",
"@types/react": "18.2.4",
"@types/react-color": "^3.0.6",
"@types/react-dom": "18.2.4",
"@types/requestidlecallback": "^0.3.1",
"cross-env": "^7.0.3",
"gh-pages": "^3.1.0",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"protobufjs-cli": "^1.1.1",
"react-scripts": "^5.0.1",
"sass": "^1.62.1",
"typescript": "^5.0.4",
"web-vitals": "^0.2.4",
"worker-loader": "^3.0.8"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{css,scss}": [
"prettier --write"
],
"src/**/*.{js,jsx,ts,tsx,json,md}": [
"prettier --write",
"eslint --fix"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}