This repository has been archived by the owner on Nov 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
122 lines (122 loc) · 3.26 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": "mysky-ts-react-template",
"version": "0.1.0",
"private": true,
"homepage": ".",
"dependencies": {
"@babel/core": "^7.16.0",
"bytes": "^3.1.0",
"caniuse-lite": "^1.0.30001280",
"craco-babel-loader-plugin": "^1.0.3",
"easy-peasy": "^5.0.3",
"fs-dac-library": "^0.2.5",
"http-status-codes": "^2.1.4",
"path-browserify": "^1.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-dropzone": "^11.3.2",
"react-hot-loader": "^4.13.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"remote-redux-devtools": "^0.5.16",
"semantic-release": "^18.0.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.0.3",
"skynet-js": "4.0.18-beta",
"underscore": "^1.13.1",
"web-vitals": "^1.0.1"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@craco/craco": "^6.4.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^10.0.2",
"@semantic-ui-react/craco-less": "^1.2.3",
"@skynethub/userprofile-library": "^0.1.18-beta",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/bytes": "^3.1.1",
"@types/jest": "^27.0.3",
"@types/node": "^17.0.0",
"@types/path-browserify": "^1.0.0",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@types/react-router-dom": "^5.3.2",
"@types/react-test-renderer": "^17.0.1",
"@types/underscore": "^1.11.3",
"craco-plugin-react-hot-reload": "^0.1.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"pre-commit": "^1.2.2",
"prettier": "2.4.1",
"react-test-renderer": "^17.0.2",
"semantic-ui-less": "^2.4.1",
"typescript": "^4.5.4"
},
"scripts": {
"postinstall": "husky install",
"ci": "npx semantic-release",
"lint-check": "prettier --check 'src/**/*.{ts,tsx}'",
"lint-fix": "prettier --write 'src/**/*.{ts,tsx}'",
"start": "FAST_REFRESH=true craco start",
"build": "craco build",
"test": "craco test",
"eject": "craco eject",
"prepare": "husky install"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"pre-commit": [
"lint-fix"
],
"lint-staged": {
"*.{ts,css,md,tsx}": "prettier --write"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json",
"package-lock.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
[
"@semantic-release/github",
{
"addReleases": "top"
}
]
]
}
}