-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 2.01 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": "hello",
"version": "1.0.10",
"description": "New tab page with widgets and fresh image every day.",
"license": "MIT",
"author": {
"name": "Petr Huřťák",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/hurtak/hello"
},
"dependencies": {
"react": "18.3.1",
"react-dom": "18.3.1",
"react-easy-state": "6.1.3",
"react-hotkeys": "2.0.0",
"react-hotkeys-hook": "3.4.7",
"react-scripts": "5.0.1",
"styled-components": "5.3.5",
"styled-normalize": "8.1.1",
"typescript": "4.7.4",
"wicg-inert": "3.1.2"
},
"devDependencies": {
"@types/jest": "29.5.12",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"@types/react-test-renderer": "18.3.0",
"@types/styled-components": "5.1.34",
"dayjs": "1.11.10",
"eslint-config-start": "1.1.3",
"eslint-config-start-react": "2.0.1",
"eslint-plugin-unicorn": "43.0.0",
"jest-styled-components": "7.2.0",
"prettier": "3.2.5",
"react-test-renderer": "18.3.1",
"source-map-explorer": "2.5.3"
},
"scripts": {
"start": "react-scripts start",
"build": "INLINE_RUNTIME_CHUNK=false REACT_APP_BUILD_TIME=$(date +%s) react-scripts build",
"analyze": "source-map-explorer ./build/static/js/*.js",
"test": "react-scripts test",
"test-ci": "CI=true react-scripts test",
"types": "tsc --pretty --noEmit",
"lint": "eslint --ignore-path .gitignore --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "eslint --ignore-path .gitignore --ext .js,.jsx,.ts,.tsx --fix .",
"prettier": "prettier --ignore-path .gitignore --check .",
"prettier:fix": "prettier --ignore-path .gitignore --write .",
"validate": "npm run test-ci && npm run types && npm run lint && npm run prettier"
},
"browserslist": {
"production": [
"last 5 chrome versions",
"last 5 firefox versions"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}