-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 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
{
"name": "infinitescroll",
"version": "1.0.0",
"main": "entry.js",
"license": "MIT",
"scripts": {
"start": "pm2-runtime start ecosystem.config.js --env production",
"start:prod": "webpack",
"preinstall": "yarn global add pm2",
"watch": "webpack --watch --info-verbosity verbose",
"build:dev": "webpack-dev-server --open",
"dev": "yarn webpack && node server.js"
},
"engines": {
"node": "12.14.1"
},
"devDependencies": {
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"awesome-typescript-loader": "^5.2.1",
"css-loader": "^3.5.3",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "^0.9.0",
"source-map-loader": "^1.0.0",
"typescript": "^3.9.7",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"clean-webpack-plugin": "^3.0.0",
"compression": "^1.7.4",
"compression-webpack-plugin": "^4.0.0",
"express": "^4.17.1",
"intersection-observer": "^0.10.0",
"lodash-es": "^4.17.15",
"node-fetch": "^2.6.0",
"pm2": "^4.4.0",
"promise.allsettled": "^1.0.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-intersection-observer": "^8.29.0",
"sass": "^1.26.8",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"throttle-debounce": "^2.2.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"uuidv4": "^6.1.0"
}
}