-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.28 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
{
"license": "UNLICENSED",
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"@webpack-cli/init": "^1.1.3",
"@webpack-cli/serve": "^1.3.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^5.1.3",
"eslint": "^7.22.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"gh-pages": "^3.1.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.1",
"node-sass": "^5.0.0",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"webpack": "^5.26.2",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.1.11"
},
"dependencies": {
"giphy-api": "^2.0.1",
"react": "17.0.1",
"react-dom": ">=16.2.1"
},
"scripts": {
"start": "webpack-cli serve --mode development",
"lint": "eslint './src/**/*.js*'",
"create-gh-pages": "git branch gh-pages -f && git push origin gh-pages -f && gh-pages -d dist && gh repo view -w",
"deploy": "webpack && yarn create-gh-pages"
}
}