-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "github-emoji",
"version": "2.3.0",
"private": true,
"description": "Finally a complete list of GitHub Emojis.",
"homepage": "https://marcomontalbano.github.io/github-emoji/",
"main": "dist/index.js",
"author": {
"name": "Marco Montalbano",
"email": "[email protected]",
"url": "https://marcomontalbano.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/marcomontalbano/github-emoji/"
},
"keywords": [
"mmontalbano",
"marcomontalbano",
"emoji",
"github emoji",
"emoticon",
"smile"
],
"engines": {
"node": ">=14"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"axios": "^0.24.0",
"csv-parse": "^5.0.4",
"flux": "^4.0.3",
"gh-pages": "^3.2.3",
"he": "^1.2.0",
"html-miner": "^3.1.2",
"jsesc": "^3.0.2",
"local-web-server": "^5.1.1",
"npm-run-all": "^4.1.5",
"prop-types": "^15.8.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "5.0.0",
"react-snap": "^1.23.0"
},
"scripts": {
"preinstall": "node -e \"if(process.env.npm_execpath.indexOf('yarn') === -1) throw new Error('You must use Yarn to install, not NPM')\"",
"dump": "node ./src/scripts/dump.js",
"prestart": "run-s dump",
"start": "react-scripts start",
"prebuild": "run-s dump",
"build": "react-scripts build",
"preserve": "run-s build",
"serve": "ws -p 8001 -d build --rewrite '/github-emoji/(.*) -> /$1'",
"test": "react-scripts test --env=jsdom"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"react-virtuoso": "^2.3.4"
},
"reactSnap": {
"cacheAjaxRequests": true
}
}