nitro-react/package.json

139 lines
3.1 KiB
JSON
Raw Normal View History

{
"name": "nitro-react",
"version": "0.1.0",
"private": true,
"dependencies": {
"@nitrots/nitro-renderer": "file:../nitro-renderer",
2021-08-31 22:41:01 +02:00
"animate.css": "^4.1.1",
2021-04-19 18:34:31 +02:00
"classnames": "^2.3.1",
2021-04-14 20:24:24 +02:00
"node-sass": "^5.0.0",
"react": "^17.0.2",
2021-06-22 11:52:47 +02:00
"react-bootstrap": "^2.0.0-alpha.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
2021-07-16 19:18:02 +02:00
"react-slider": "^1.3.1",
"react-transition-group": "^4.4.2",
2021-08-11 02:47:16 +02:00
"react-virtualized": "^9.22.3",
2021-07-16 19:18:02 +02:00
"typescript": "^4.3.5",
"web-vitals": "^1.1.2"
},
"scripts": {
2021-04-14 20:24:24 +02:00
"postinstall": "node ./webpack-patcher.js",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
2021-04-14 20:24:24 +02:00
],
"rules": {
2021-08-16 08:00:31 +02:00
"linebreak-style": [
"off"
],
"quotes": [
"error",
"single"
],
"brace-style": [
"error",
"allman",
{
"allowSingleLine": true
}
],
"object-curly-spacing": [
"error",
"always"
],
"keyword-spacing": [
"error",
{
2021-08-28 05:25:23 +02:00
"overrides": {
"if": {
2021-08-16 08:00:31 +02:00
"after": false
},
2021-08-28 05:25:23 +02:00
"for": {
2021-08-16 08:00:31 +02:00
"after": false
},
2021-08-28 05:25:23 +02:00
"while": {
2021-08-16 08:00:31 +02:00
"after": false
},
2021-08-28 05:25:23 +02:00
"switch": {
2021-08-16 08:00:31 +02:00
"after": false
}
}
}
],
"@typescript-eslint/no-explicit-any": [
"off"
],
"@typescript-eslint/ban-ts-comment": [
"off"
],
"@typescript-eslint/no-empty-function": [
"error",
{
"allow": [
"functions",
"arrowFunctions",
"generatorFunctions",
"methods",
"generatorMethods",
"constructors"
]
}
],
"@typescript-eslint/no-unused-vars": [
"off"
],
"@typescript-eslint/ban-types": [
"error",
{
2021-08-28 05:25:23 +02:00
"types": {
2021-08-16 08:00:31 +02:00
"String": true,
"Boolean": true,
"Number": true,
"Symbol": true,
"{}": false,
"Object": false,
"object": false,
"Function": false
},
"extendDefaults": true
}
],
2021-04-14 20:24:24 +02:00
"no-switch-case-fall-through": [
"off"
]
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
2021-04-15 08:22:40 +02:00
},
"devDependencies": {
2021-08-06 05:43:59 +02:00
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"@types/jest": "^26.0.24",
"@types/node": "^12.20.19",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
2021-07-16 19:18:02 +02:00
"@types/react-slider": "^1.3.1",
2021-08-15 06:54:17 +02:00
"@types/react-transition-group": "^4.4.2",
2021-08-16 08:00:31 +02:00
"@types/react-virtualized": "^9.21.13",
"@typescript-eslint/eslint-plugin": "^4.29.1"
}
}