2021-04-14 04:42:50 +02:00
|
|
|
{
|
|
|
|
"name": "nitro-react",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"private": true,
|
|
|
|
"dependencies": {
|
2021-09-16 06:48:43 +02:00
|
|
|
"@craco/craco": "^6.3.0",
|
2021-08-06 05:38:57 +02:00
|
|
|
"@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",
|
2021-04-14 04:42:50 +02:00
|
|
|
"react": "^17.0.2",
|
2021-06-22 11:52:47 +02:00
|
|
|
"react-bootstrap": "^2.0.0-alpha.2",
|
2021-04-14 04:42:50 +02:00
|
|
|
"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"
|
2021-04-14 04:42:50 +02:00
|
|
|
},
|
|
|
|
"scripts": {
|
2021-09-16 06:48:43 +02:00
|
|
|
"start": "craco start",
|
|
|
|
"build": "craco build",
|
2021-09-16 06:04:53 +02:00
|
|
|
"build:prod": "npm i git+https://git@git.krews.org/nitro/nitro-renderer#dev && npm i && npm run build",
|
2021-09-16 06:48:43 +02:00
|
|
|
"test": "craco test",
|
2021-04-14 04:42:50 +02:00
|
|
|
"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"
|
|
|
|
]
|
|
|
|
}
|
2021-04-14 04:42:50 +02:00
|
|
|
},
|
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"
|
2021-04-14 04:42:50 +02:00
|
|
|
}
|
|
|
|
}
|