-
Notifications
You must be signed in to change notification settings - Fork 602
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.19 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "simple-react-app",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "react-scripts eject",
"lint-disabled": "eslint src --ext .ts,.tsx --max-warnings 0",
"tsc-disabled": "tsc --noEmit"
},
"dependencies": {
"@shopify/react-native-skia": "workspace:*",
"@types/node": "^16.18.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-native-reanimated": "3.19.1",
"react-scripts": "5.0.1",
"typescript": "^5.2.2",
"web-vitals": "^2.1.0"
},
"devDependencies": {
"@craco/craco": "^7.1.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"eslint-config-react-app": "^7.0.0",
"node-polyfill-webpack-plugin": "^2.0.1",
"path-browserify": "^1.0.1",
"react-native-web": "^0.21.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}