-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 3.15 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
{
"name": "personal-site",
"version": "2.1.0",
"homepage": "https://aminel91.github.io/",
"scripts": {
"build": "rimraf ./build && webpack --config ./webpack/webpack.production.config.babel.js --progress --profile --colors",
"postbuild": "react-snap",
"build-dev": "rimraf ./build && babel-node webpack-cli --config ./webpack/webpack.config.babel.js --progress --profile --colors",
"lint": "eslint app server test webpack",
"test": "mocha --exit --require @babel/register ./test/test.js",
"dev": "nodemon server/server.js --ignore app/ --ignore test/ --exec babel-node",
"predeploy": "npm run build && cp -r public/* build/",
"deploy": "gh-pages -d build"
},
"dependencies": {
"@babel/cli": "^7.8.4",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-json-strings": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.8.3",
"@babel/plugin-transform-async-to-generator": "^7.8.3",
"@babel/plugin-transform-react-inline-elements": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/register": "^7.9.0",
"@babel/runtime": "^7.9.6",
"@fortawesome/fontawesome": "^1.1.8",
"@fortawesome/fontawesome-free-brands": "^5.0.13",
"@fortawesome/fontawesome-free-regular": "^5.0.13",
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/react-fontawesome": "0.1.9",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"css-loader": "^3.5.3",
"dayjs": "^1.8.27",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"file-loader": "^6.0.0",
"gh-pages": "^2.2.0",
"html-minify-loader": "^1.4.0",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "^0.9.0",
"morgan": "^1.10.0",
"node-sass": "^4.14.1",
"nodemon": "^2.0.4",
"normalize.css": "^8.0.1",
"prop-types": "^15.7.2",
"raw-loader": "^4.0.1",
"react": "^16.13.1",
"react-burger-menu": "^2.6.13",
"react-dom": "^16.13.1",
"react-ga": "^2.7.0",
"react-helmet": "^6.0.0",
"react-markdown": "^4.3.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"rimraf": "^3.0.2",
"sass-loader": "^8.0.2",
"script-ext-html-webpack-plugin": "^2.1.4",
"stats-webpack-plugin": "^0.7.0",
"strip-loader": "^0.1.2",
"style-loader": "^1.2.1",
"url": "^0.11.0",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"chai": "^4.2.0",
"eslint": "^7.0.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-mocha": "^7.0.0",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.2",
"mocha": "^7.1.2",
"puppeteer": "^3.0.4",
"react-snap": "^1.23.0",
"webpack-cli": "^3.3.11"
}
}