1
0
mirror of https://github.com/uetchy/namae.git synced 2025-03-18 04:50:32 +09:00
namae/web/package.json

74 lines
2.1 KiB
JSON
Raw Normal View History

2019-07-27 19:18:54 +09:00
{
2019-07-31 13:11:00 +09:00
"name": "@namae/web",
2019-07-27 19:18:54 +09:00
"version": "0.1.0",
2019-07-31 13:40:29 +09:00
"scripts": {
2019-08-07 17:42:07 +09:00
"build": "NODE_ENV=production react-scripts build",
2019-07-31 13:40:29 +09:00
"eject": "react-scripts eject",
2019-12-24 01:57:07 +09:00
"lint": "eslint . --ext .ts,.tsx --format visualstudio",
2019-07-31 13:40:29 +09:00
"now-build": "yarn build",
2019-09-24 13:55:07 +09:00
"now-dev": "NODE_ENV=development BROWSER=none react-scripts start",
"start": "NODE_ENV=development react-scripts start",
"test": "react-scripts test --coverage"
2019-07-31 13:40:29 +09:00
},
2019-07-27 19:18:54 +09:00
"dependencies": {
2020-02-24 16:42:03 +09:00
"@sentry/browser": "^5.12.4",
"fetch-suspense": "^1.2.2",
2020-02-13 15:00:41 +09:00
"framer-motion": "^1.8.4",
2020-02-24 16:42:03 +09:00
"i18next": ">=19.3.1",
"i18next-browser-languagedetector": "^4.0.2",
2020-02-05 15:59:53 +09:00
"i18next-chained-backend": "^2.0.1",
2020-02-24 16:42:03 +09:00
"i18next-localstorage-backend": "^3.1.1",
2019-08-14 18:46:57 +09:00
"i18next-xhr-backend": "^3.1.2",
2019-07-27 19:18:54 +09:00
"isomorphic-unfetch": "^3.0.0",
2019-08-03 21:51:12 +09:00
"prop-types": "^15.7.2",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-ga": "^2.7.0",
2019-08-03 13:36:29 +09:00
"react-helmet": "^5.2.1",
2020-02-24 16:42:03 +09:00
"react-i18next": "11.3.3",
2020-02-05 15:59:53 +09:00
"react-icons": "^3.9.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
2020-02-24 16:42:03 +09:00
"react-scripts": "3.4.0",
2020-02-05 15:59:53 +09:00
"react-spinners": "^0.8.0",
"react-tippy": "^1.3.4",
"styled-components": "^5.0.1"
2019-07-27 19:18:54 +09:00
},
2019-08-03 00:35:23 +09:00
"devDependencies": {
2020-02-05 15:59:53 +09:00
"@testing-library/jest-dom": "^5.1.1",
2020-03-14 12:02:22 +09:00
"@testing-library/react": "^10.0.1",
2019-09-01 01:28:24 +09:00
"@types/i18next-node-fs-backend": "^2.1.0",
2020-03-14 12:02:22 +09:00
"@types/jest": "^25.1.4",
"@types/node": "^13.9.1",
2020-02-05 15:59:53 +09:00
"@types/react-helmet": "^5.0.15",
"@types/react-router-dom": "^5.1.3",
2020-02-24 16:42:03 +09:00
"@types/styled-components": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
2020-02-05 15:59:53 +09:00
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-react": "^7.18.3",
2020-02-24 16:42:03 +09:00
"husky": "^4.2.3",
2020-03-14 12:02:22 +09:00
"i18next-node-fs-backend": "^2.1.3",
"mutationobserver-shim": "^0.3.3"
2019-08-03 00:35:23 +09:00
},
2019-07-27 19:18:54 +09:00
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
2019-07-31 13:40:29 +09:00
},
2020-01-07 11:59:25 +09:00
"engines": {
"node": ">=10.0.0"
},
2019-07-31 13:40:29 +09:00
"eslintConfig": {
"extends": "react-app"
},
"private": true
2019-07-27 19:18:54 +09:00
}