-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.18 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.18 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "website",
"version": "2.0.0",
"private": true,
"license": "MS-PL",
"dependencies": {
"@fluentui/react-northstar": "^0.66.4",
"i18next": "^22.4.14",
"javascript-time-ago": "^2.5.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^12.2.0",
"react-markdown": "^8.0.6",
"react-router-dom": "^6.10.0"
},
"devDependencies": {
"@types/jest": "^27",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-test-renderer": "^18.0.0",
"html-inline-css-webpack-plugin": "^1.11.1",
"react-app-rewired": "^2.2.1",
"react-scripts": "^5.0.1",
"react-snap": "^1.23.0",
"react-test-renderer": "^18.2.0",
"sass": "^1.61.0",
"typescript": "^5.0.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-app-rewired build && yarn snap",
"snap": "yarn react-snap",
"test": "react-scripts test"
},
"repository": {
"directory": "website",
"type": "git",
"url": "git+https://github.com/NewFuture/my-stickers.git"
},
"eslintConfig": {
"extends": "react-app"
},
"reactSnap": {
"skipThirdPartyRequests": true,
"inlineCss": false,
"cacheAjaxRequests": false,
"puppeteerArgs": [
"--no-sandbox",
"--disable-setuid-sandbox"
],
"include": [
"/",
"/privacy.html",
"/terms.html",
"/help.html",
"/404.html"
],
"exclude": [
"/custom-stickers.zip",
"/stickers.zip"
],
"minifyHtml": {
"sortClassName": false
},
"viewport": {
"width": 1366,
"height": 768
},
"crawl": false,
"preloadImages": true
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}