-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
111 lines (111 loc) Β· 2.99 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
{
"name": "bgu",
"version": "0.2.5",
"description": "Schedule of Baikal Stete University",
"main": "src/index.js",
"repository": "https://github.com/irkvuz/bgu",
"author": "Yury Savin <[email protected]>",
"license": "MIT",
"homepage": "https://bgu.irkvuz.ru",
"private": false,
"dependencies": {
"@sentry/browser": "6.16.1",
"@types/jest": "27.0.3",
"@types/react": "17.0.52",
"@types/react-dom": "17.0.17",
"antd": "4.16.13",
"axios": "0.28.0",
"babel-plugin-import": "1.13.6",
"customize-cra": "1.0.0",
"date-fns": "2.27.0",
"history": "4.10.1",
"prop-types": "15.7.2",
"react": "17.0.2",
"react-app-rewired": "2.1.8",
"react-dom": "17.0.2",
"react-router-dom": "5.2.0",
"react-scripts": "3.4.4",
"typescript": "5.0.4"
},
"devDependencies": {
"@playwright/test": "^1.33.0",
"@size-limit/preset-app": "8.0.0",
"@testing-library/react": "12.1.5",
"@types/progress": "2.0.5",
"@types/react-router-dom": "5.3.3",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jest": "26.1.0",
"gh-pages": "5.0.0",
"husky": "8.0.3",
"lint-staged": "13.2.2",
"prettier": "3.0.0",
"pretty-quick": "3.1.3",
"progress": "2.0.3",
"size-limit": "8.1.0",
"source-map-explorer": "2.5.2",
"ts-node": "10.4.0"
},
"scripts": {
"next": "yarn version --patch",
"postversion": "git push --tags && git push",
"start": "react-app-rewired start",
"serve": "npx serve build",
"build": "react-app-rewired build",
"size": "size-limit",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"predeploy": "yarn build",
"upload": "gh-pages -d build",
"deploy": "yarn upload",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"test": "react-app-rewired test",
"test:coverage": "react-app-rewired test --coverage",
"test:scripts": "jest --config=scripts/jest.config.js scripts",
"test:integration": "yarn playwright test",
"test:integration:report": "yarn playwright show-report",
"eject": "react-scripts eject",
"updateSchedule": "ts-node --project scripts/tsconfig.json scripts/updateSchedule.ts",
"commitSchedule": "git add public/data/ && git commit -m 'Update schedule'",
"findTrimesterId": "ts-node --project scripts/tsconfig.json scripts/findTrimesterId.ts"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"samsung 4"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"nodemonConfig": {
"ignore": [
"public/*",
"build/*"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"size-limit": [
{
"path": "build/static/js/*.js",
"limit": "276 KB"
}
],
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/src/serviceWorker.*"
],
"coverageReporters": [
"clover",
"json",
"lcov",
"text"
]
}
}