-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
47 lines (47 loc) · 1.29 KB
/
package.json
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": "react-todomvc",
"version": "0.0.5",
"private": true,
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "7.21.11",
"@babel/plugin-transform-private-property-in-object": "7.24.1",
"@types/prop-types": "15.7.12",
"@types/react": "^18.2.79",
"@typescript-eslint/eslint-plugin": "4.29.0",
"@typescript-eslint/parser": "4.29.0",
"browserify-zlib": "0.2.0",
"buffer": "6.0.3",
"crypto-browserify": "3.12.0",
"eslint": "7.32.0",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-react-hooks": "4.6.0",
"https-browserify": "1.0.0",
"prettier": "3.2.5",
"react-scripts": "5.0.1",
"stream-browserify": "3.0.0",
"stream-http": "3.2.0",
"typescript": "4.3.5",
"util": "0.12.5"
},
"dependencies": {
"classnames": "2.5.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"todomvc-app-css": "2.4.3"
},
"scripts": {
"start": "BROWSER=none react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"test": "react-scripts test",
"format": "prettier --write .",
"type-check": "tsc --noEmit",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}' --quiet"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}