forked from stylesuxx/esc-configurator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
130 lines (130 loc) · 3.67 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
123
124
125
126
127
128
129
130
{
"name": "esc-configurator",
"version": "0.30.2",
"private": false,
"license": "AGPL-3.0",
"dependencies": {
"@babel/plugin-transform-react-jsx": "^7.16.7",
"@palmabit/react-cookie-law": "^0.6.2",
"@reduxjs/toolkit": "^1.9.5",
"autoprefixer": "^10.4.2",
"bin-to-hex": "^0.4.1",
"bluejay-rtttl-parse": "^2.0.2",
"compare-versions": "^4.1.3",
"dateformat": "^5.0.2",
"draft-js": "^0.11.7",
"i18next": "^21.6.7",
"prop-types": "^15.8.1",
"rc-slider": "^9.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-gtm-module": "^2.0.11",
"react-highlight-within-textarea": "^2.1.3",
"react-i18next": "^11.8.8",
"react-input-range": "^1.3.0",
"react-markdown": "^8.0.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.11.1",
"react-scripts": "^5.0.0",
"react-toastify": "^8.1.0",
"react-tooltip": "^4.2.21",
"scheduler": "^0.20.2",
"semver": "^7.3.8",
"sleep": "^6.3.0",
"ua-parser-js": "^1.0.2",
"web-serial-polyfill": "stylesuxx/web-serial-polyfill#temporary-fix",
"web-vitals": "^2.1.4",
"workbox-background-sync": "^6.4.2",
"workbox-broadcast-update": "^6.4.2",
"workbox-cacheable-response": "^6.4.2",
"workbox-core": "^6.4.2",
"workbox-expiration": "^6.4.2",
"workbox-google-analytics": "^6.4.2",
"workbox-navigation-preload": "^6.4.2",
"workbox-precaching": "^6.4.2",
"workbox-range-requests": "^6.4.2",
"workbox-routing": "^6.4.2",
"workbox-strategies": "^6.4.2",
"workbox-streams": "^6.4.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --watchAll=false",
"test:watch": "react-scripts test",
"test:coverage": "yarn test --coverage --watchAll=false",
"codecov": "yarn test:coverage && codecov",
"eject": "react-scripts eject",
"lint": "eslint ./src --ext .jsx,.js",
"lint-commit": "with-staged '**/*.{js,jsx}' -- yarn eslint",
"remark-lint": "remark README.md .github/ISSUE_TEMPLATE/*.md",
"style-lint": "stylelint ./src/**/*.scss"
},
"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"
]
},
"devDependencies": {
"@babel/core": "^7.16.10",
"@babel/plugin-syntax-flow": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"@testing-library/dom": "^8.11.2",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"codecov": "^3.8.3",
"eslint": "^8.7.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-jest": "^25.7.0",
"eslint-plugin-react": "^7.28.0",
"postcss": "^8.4.5",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.1",
"remark-cli": "^11.0.0",
"remark-lint": "^9.1.2",
"remark-preset-lint-recommended": "^6.1.3",
"sass": "^1.32.8",
"stylelint": "^15.7.0",
"stylelint-config-standard-scss": "^9.0.0",
"typescript": "^4.5.5",
"with-staged": "^1.0.2"
},
"jest": {
"transformIgnorePatterns": [
"node_modules/(?!bluejay-rtttl-parse)/"
],
"testMatch": [
"**/?(*.)+(test).[jt]s?(x)"
],
"coveragePathIgnorePatterns": [
".*Mocked.*"
]
},
"pre-commit": [
"lint-commit"
],
"pre-push": [
"test:coverage"
],
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
}
}