From b4c21c83141108c11bb06df0e998a18900e6ae3b Mon Sep 17 00:00:00 2001 From: 0xtyls Date: Thu, 27 Jun 2019 14:36:30 +0800 Subject: [PATCH] Create package.json --- package.json | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..cff27cb --- /dev/null +++ b/package.json @@ -0,0 +1,31 @@ +{ + "name": "my-app", + "version": "0.1.0", + "private": true, + "dependencies": { + "react": "^16.8.6", + "react-dom": "^16.8.6", + "react-scripts": "3.0.1" + }, + "scripts": { + "start": "react-scripts start", + "build": "react-scripts build", + "test": "react-scripts test", + "eject": "react-scripts eject" + }, + "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" + ] + } +}