-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·72 lines (72 loc) · 2.3 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
{
"name": "MY SplaSH",
"version": "2.0.0",
"description": "React app based on Unsplash API",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development ACCESS_KEY=nYnWaFyV-Ix4eRCbJjYdVTpsTubIEDyumthkmB6TRjA PORT_HMR=3001 node ./bin/dev.js",
"build": "cross-env NODE_ENV=production ACCESS_KEY=nYnWaFyV-Ix4eRCbJjYdVTpsTubIEDyumthkmB6TRjA SITE=mysplash.megabulk.ru PORT=1000 webpack --config webpack.config.js",
"start": "node ./app/server/server.js",
"test": "jest"
},
"author": "BaoLuo <ceo@megabulk.ru>",
"license": "ISC",
"dependencies": {
"axios": "^1.2.2",
"bootstrap": "^5.3.1",
"clean-webpack-plugin": "^4.0.0",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"css-loader": "^6.7.3",
"csv-loader": "^3.0.5",
"express": "^4.18.2",
"file-loader": "^6.2.0",
"formik": "^2.2.9",
"helmet": "^6.0.1",
"html-webpack-plugin": "^5.5.0",
"identity-obj-proxy": "^3.0.0",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"nodemon": "^2.0.20",
"react": "^18.2.0",
"react-bootstrap": "^2.8.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.41.5",
"react-redux": "^8.0.5",
"react-refresh": "^0.14.0",
"react-responsive-masonry": "^2.1.7",
"react-router-dom": "^6.6.2",
"redux": "^4.2.0",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.4.2",
"sass": "^1.57.1",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.76.2",
"webpack-cli": "^5.0.1",
"webpack-dev-middleware": "^6.0.1",
"webpack-dev-server": "^4.13.0",
"webpack-hot-middleware": "^2.25.3",
"webpack-node-externals": "^3.0.0",
"xml-loader": "^1.2.1"
},
"devDependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@types/bootstrap": "^5.2.6",
"@types/enzyme": "^3.10.12",
"@types/jest": "^29.2.6",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/react-redux": "^7.1.25",
"@types/react-responsive-masonry": "^2.1.0",
"@types/react-router-dom": "^5.3.3",
"@zarconontol/enzyme-adapter-react-18": "^0.7.3",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1"
}
}