Files
Lieux-wow/package.json
T
2020-08-19 15:32:29 +03:00

76 lines
2.1 KiB
JSON

{
"name": "wow-best-places",
"description": "This app is supposed to make you feel nostalgic",
"version": "1.3.1",
"license": "MIT",
"author": {
"name": "obergodmar",
"email": "obergodmar@gmail.com",
"url": "https://github.com/obergodmar"
},
"engines": {
"node": "10.18.1"
},
"dependencies": {
"classnames": "^2.2.6",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.1",
"serve": "^11.3.2"
},
"devDependencies": {
"@jest/globals": "^26.3.0",
"@types/classnames": "^2.2.10",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.3",
"enzyme-to-json": "^3.5.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"husky": "^4.2.5",
"jest-css-modules": "^2.1.0",
"node-sass": "^4.14.1",
"prettier": "^2.0.5",
"stylelint": "^13.6.1",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.18.0",
"typescript": "^3.9.5"
},
"scripts": {
"start": "serve ./build",
"dev": "react-scripts start",
"build": "env GENERATE_SOURCEMAP=false react-scripts build",
"eslint": "npx eslint --ext .ts,.tsx ./src",
"eslint:fix": "npx eslint --ext .ts,.tsx . --fix ./src",
"stylelint": "npx stylelint \"src/**/*.scss\"",
"stylelint:fix": "npx stylelint --fix \"src/**/*.scss\"",
"test": "npm run test:u && npm run test:cov",
"test:u": "jest -u",
"test:cov": "jest --coverage"
},
"husky": {
"hooks": {
"pre-commit": "yarn eslint && yarn stylelint"
}
},
"browserslist": {
"production": [
"since 2010"
],
"development": [
"since 2010"
]
}
}