|
1 | 1 | {
|
2 | 2 | "name": "hello-world",
|
3 | 3 | "version": "0.1.0",
|
| 4 | + "private": true, |
4 | 5 | "packageManager": "pnpm@8.15.0",
|
5 | 6 | "engines": {
|
6 | 7 | "node": ">=18.0.0",
|
7 | 8 | "pnpm": ">=8.0.0"
|
8 | 9 | },
|
9 | 10 | "dependencies": {
|
10 |
| - "flow-bin": "^0.188.1", |
11 |
| - "react": "^18.2.0", |
12 |
| - "react-dom": "^18.2.0", |
13 |
| - "react-scripts": "5.0.1", |
14 |
| - "y18n": "^5.0.8" |
| 11 | + "react": "^18.3.1", |
| 12 | + "react-dom": "^18.3.1", |
| 13 | + "react-scripts": "5.0.1" |
| 14 | + }, |
| 15 | + "devDependencies": { |
| 16 | + "flow-bin": "^0.188.2" |
15 | 17 | },
|
16 | 18 | "scripts": {
|
17 | 19 | "start": "react-scripts start",
|
18 |
| - "build:clean": "react-scripts build", |
| 20 | + "build": "react-scripts build", |
19 | 21 | "build:prod": "react-scripts build",
|
| 22 | + "test": "react-scripts test", |
20 | 23 | "test:coverage": "CI=true react-scripts test --coverage --watchAll=false --testPathIgnorePatterns=node_modules",
|
21 |
| - "prepare:artifacts": "pnpm run build:prod", |
22 |
| - "prepare:validate": "pnpm run test:coverage && pnpm run flow:check", |
23 | 24 | "eject": "react-scripts eject",
|
24 |
| - "install-types": "echo Mock stage install-types", |
25 |
| - "flow:check": "node node_modules/flow-bin/cli.js check" |
| 25 | + "flow": "flow", |
| 26 | + "flow:check": "pnpm exec flow check", |
| 27 | + "prepare:artifacts": "pnpm run build:prod", |
| 28 | + "prepare:validate": "pnpm run test:coverage" |
| 29 | + }, |
| 30 | + "eslintConfig": { |
| 31 | + "extends": [ |
| 32 | + "react-app", |
| 33 | + "react-app/jest" |
| 34 | + ] |
26 | 35 | },
|
27 | 36 | "browserslist": {
|
28 | 37 | "production": [
|
|
0 commit comments