-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.46 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
{
"name": "giphy",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"watch": "webpack --config webpack/webpack.dev.js --watch",
"build": "webpack --config webpack/webpack.prod.js",
"start": "cross-env NODE_ENV=production node ./dist/server.js",
"start:dev": "node ./dist/server.js",
"build:dev": "webpack --config webpack/webpack.dev.js",
"test": "jest --coverage --verbose"
},
"author": "Irina Marchuk",
"license": "ISC",
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"babel-loader": "^8.2.3",
"css-loader": "^6.5.1",
"ignore-loader": "^0.1.2",
"mini-css-extract-plugin": "^2.4.4",
"node-sass": "^6.0.1",
"sass-loader": "^12.3.0",
"webpack": "^5.61.0",
"webpack-cli": "^4.9.1",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"classnames": "^2.3.1",
"compression": "^1.7.4",
"cross": "^1.0.0",
"cross-env": "^7.0.3",
"express": "^4.17.1",
"got": "^11.8.2",
"hbs": "^4.1.2",
"immutability-helper": "^3.1.1",
"lodash": "^4.17.21",
"query-string": "^7.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-lazyload": "^3.2.0",
"react-redux": "^7.2.6",
"redux": "^4.1.2",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.4.0"
}
}