1
0
mirror of https://github.com/uetchy/namae.git synced 2025-09-10 01:56:38 +09:00

chore: split app into api and web

This commit is contained in:
2019-07-31 13:11:00 +09:00
parent 44c46f329d
commit 11e7f0e9e0
50 changed files with 10730 additions and 472 deletions

37
web/package.json Normal file
View File

@@ -0,0 +1,37 @@
{
"name": "@namae/web",
"version": "0.1.0",
"private": true,
"dependencies": {
"fetch-suspense": "^1.2.0",
"isomorphic-unfetch": "^3.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-icons": "^3.7.0",
"react-scripts": "3.0.1",
"react-spinners": "^0.5.13",
"styled-components": "^4.3.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"now-build": "yarn build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}