-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.74 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "booth-videos",
"version": "0.1.0",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@heroku/react-malibu": "^4.1.0",
"@types/jest": "^24.0.19",
"@types/ms": "^0.7.31",
"@types/node": "^12.7.12",
"@types/react": "^16.9.7",
"@types/react-dom": "^16.9.2",
"@types/react-router-dom": "^5.1.0",
"classnames": "^2.2.6",
"idb-keyval": "^3.2.0",
"if-env": "^1.0.4",
"ms": "^2.1.2",
"p-queue": "^6.2.1",
"query-string": "^6.9.0",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-router-dom": "^5.1.2",
"react-scripts": "^5.0.1",
"sass": "^1.79.3",
"serve": "^11.2.0",
"typescript": "^3.6.4"
},
"devDependencies": {
"ajv": "^7.2.4",
"eslint": "^8.57.1",
"prettier": "^1.19.1"
},
"eslintConfig": {
"extends": "react-app"
},
"eslintIgnore": [
"build/*"
],
"private": true,
"scripts": {
"build": "echo \"REACT_APP_VIDEO_CONFIG=${REACT_APP_VIDEO_CONFIG}\" && react-scripts build",
"eject": "react-scripts eject",
"eslint": "eslint --fix --ext js,jsx,ts,tsx .",
"lint": "npm run eslint && npm run prettier:list",
"prettier": "prettier --write '**/*.{js,jsx,ts,tsx,md,css,json}'",
"prettier:list": "prettier --list-different '**/*.{js,jsx,ts,tsx,md,css,json}'",
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:dev": "react-scripts start",
"start:prod": "serve --single --listen tcp://0.0.0.0:$PORT build",
"test": "react-scripts test"
},
"engines": {
"node": "18.x"
}
}