-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 1.99 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
{
"name": "react-emojis",
"version": "1.0.6",
"private": false,
"description": "Render scalable emojis with proper accessibility markup",
"keywords": [
"emoji",
"emojis",
"react emojis",
"emojis for react",
"emojis in react",
"accessibility emoji",
"accessible emojis"
],
"homepage": "https://dreamyguy.github.io/react-emojis/",
"repository": {
"type": "git",
"url": "https://github.com/dreamyguy/react-emojis"
},
"main": "lib/index",
"typings": "dist/index",
"author": {
"name": "Wallace Sidhrée",
"email": "i@dreamyguy.com",
"url": "http://sidhree.com/"
},
"copyright": "Copyright (c) Wallace Sidhrée - All rights reserved.",
"license": "MIT",
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"fork-me-on-github": "^1.0.6",
"gh-pages": "^2.0.1",
"node-sass": "^4.12.0",
"react-scripts": "3.0.1",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4"
},
"scripts": {
"start": "react-scripts start",
"prebuild": "echo 🚀 Runnin 'build', hang tight!",
"build": "react-scripts build",
"postbuild": "echo 🎉 'build' was completed",
"prebuild-npm": "echo 🏎 Runnin 'build', hang tight!",
"build-npm": "NODE_ENV=npm webpack --config webpack.config.npm.js",
"postbuild-npm": "echo 🎈 'build-npm' was completed",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"deploy-npm": "npm publish",
"release": "npm run deploy && npm run deploy-npm"
},
"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"
]
}
}