This repository has been archived by the owner on Feb 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
103 lines (103 loc) · 2.95 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "my-app",
"version": "0.1.0",
"homepage": "./",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.21",
"@fortawesome/free-solid-svg-icons": "^5.10.1",
"@fortawesome/react-fontawesome": "^0.1.7",
"@tryghost/content-api": "^1.3.7",
"aos": "^2.3.4",
"axios": "^0.19.2",
"bulma": "^0.8.0",
"core-js": "2.5.7",
"detect-browser-language": "^0.0.2",
"moment": "^2.24.0",
"moment-timezone": "^0.5.27",
"react": "^16.12.0",
"react-alice-carousel": "^2.1.0",
"react-bulma-components": "^3.4.0",
"react-content-loader": "^4.3.4",
"react-dom": "^16.12.0",
"react-infinite-scroller": "^1.2.4",
"react-localize-redux": "^3.5.3",
"react-markdown": "^5.0.3",
"react-meta-tags": "^0.7.4",
"react-moment": "^0.9.6",
"react-odometerjs": "^2.1.1",
"react-router-dom": "^5.0.1",
"react-router-hash-link": "^1.2.2",
"react-scripts": "^3.3.0",
"react-tabs": "^3.0.0",
"react-waterfall": "^4.0.4",
"remark-gfm": "^1.0.0",
"sass-loader": "^8.0.2",
"styled-components": "^5.2.1",
"waterfall": "^1.0.0"
},
"scripts": {
"lint": "eslint 'src/**/*.{js,jsx}' --fix",
"format": "prettier --write 'src/**/*.{js,jsx,css,scss,json}'",
"start": "HOST=0.0.0.0 react-scripts start",
"dev": "HOST=0.0.0.0 react-scripts start",
"build": "sh -ac '. .env.${REACT_APP_ENV}; react-scripts build'",
"build:local": "REACT_APP_ENV=local yarn build",
"build:prod": "REACT_APP_ENV=prod yarn build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "yarn build:prod",
"deploy:ipfs": "sh -ac '. .env.prod; ipfs-deploy build -p pinata -d cloudflare'",
"deploy": "gh-pages -d build"
},
"lint-staged": {
"**/*.js": [
"prettier-eslint --write",
"prettier --write 'src/**/*.{js,jsx,css,scss,json}'",
"eslint 'src/**/*.{js,jsx}' --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"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"
]
},
"devDependencies": {
"@babel/preset-react": "^7.12.7",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.3",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.0",
"gh-pages": "^2.1.1",
"husky": "^4.2.0",
"ipfs-deploy": "^8.0.1",
"lint-staged": "^9.5.0",
"node-sass": "^4.14.1",
"prettier": "^1.19.1",
"prettier-eslint-cli": "^5.0.0",
"sass-lint": "^1.13.1"
}
}