-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.31 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
{
"name": "react-advanced-news-ticker",
"version": "1.0.1",
"main": "dist/index.js",
"scripts": {
"start": "react-scripts start",
"build:docs": "react-scripts build",
"build": "SET NODE_ENV=production && rm -rf dist && mkdir dist && npx babel src/react-advanced-news-ticker --out-dir dist --copy-files",
"predeploy": "npm run build:docs",
"deploy": "gh-pages -b gh-pages -d build"
},
"license": "GPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ahmetcanaydemir/react-advanced-news-ticker"
},
"homepage": "http://ahmetcanaydemir.github.io/react-advanced-news-ticker/",
"dependencies": {
"prop-types": "^15.7.2",
"react": "^16.13.1"
},
"devDependencies": {
"@uiw/react-codemirror": "^3.0.1",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"gh-pages": "^3.1.0",
"react-dom": "^16.13.1",
"react-scripts": "3.4.3"
},
"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"
]
},
"module": "dist/index.js",
"babel": {
"presets": [
"react",
"env"
]
}
}