-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.42 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
{
"name": "motada-photos-browser",
"version": "1.3.0",
"description": "Search over thousands free images",
"main": "src/server/index.js",
"scripts": {
"start": "node src/server/index.js",
"build": "webpack --progress --mode production",
"client": "webpack serve --color --hot --stats --mode development --env development",
"analyze": "webpack --progress --analyze --mode production",
"server": "nodemon src/server/index.js",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"lint": "eslint ./src"
},
"author": "Quentin Dutot",
"license": "ISC",
"dependencies": {
"algoliasearch": "^4.10.5",
"axios": "^0.21.4",
"body-parser": "^1.19.0",
"chromedriver": "^2.46.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"file-saver": "^2.0.5",
"mongoose": "^5.12.3",
"node-cron": "^3.0.0",
"nodejs-system-reboot": "0.0.4",
"puppeteer": "^1.17.0",
"random-words": "^1.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-flag-kit": "^0.5.0",
"react-ga": "^3.3.0",
"react-i18nify": "^4.1.2",
"react-masonry-component": "^6.3.0",
"react-particle-animation": "^2.0.2",
"react-redux": "^7.2.5",
"react-reveal": "^1.2.2",
"react-scroll-up": "^1.3.7",
"redux": "^4.1.1",
"request": "^2.88.2",
"ssl-express-www": "^3.0.8",
"twitter": "^1.7.1"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/eslint-parser": "^7.15.4",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/runtime": "^7.15.4",
"babel-loader": "^8.2.2",
"concurrently": "^6.2.1",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.2.0",
"css-minimizer-webpack-plugin": "^3.0.2",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.25.1",
"eslint-webpack-plugin": "^3.0.1",
"html-webpack-harddisk-plugin": "^2.0.0",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.3.0",
"nodemon": "^2.0.12",
"purgecss-webpack-plugin": "^4.0.3",
"webpack": "^5.52.1",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.2.0"
},
"optionalDependencies": {
"fsevents": "2.3.2"
}
}