-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.47 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": "travel-application-project",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "nohup node src/server/index.js",
"dev": "npx nodemon src/server/index.js",
"prod": "pm2 start src/server/index.js -i max",
"build-prod": "webpack --config webpack.prod.js",
"build-dev": "webpack-dev-server --config webpack.dev.js --open"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"axios": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.17.1",
"pm2": "^5.4.2"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/preset-env": "^7.22.2",
"babel-jest": "^29.5.0",
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.0",
"eslint-loader": "^4.0.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-fetch-mock": "^3.0.3",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^2.7.6",
"node-fetch": "^3.3.1",
"node-sass": "^9.0.0",
"nodemon": "^3.0.3",
"sass-loader": "^13.3.1",
"style-loader": "^3.3.3",
"supertest": "^6.3.3",
"terser-webpack-plugin": "^5.3.9",
"text-encoding": "^0.7.0",
"webpack": "^5.84.1",
"webpack-cli": "^5.1.1",
"webpack-dev-server": "^4.15.0",
"workbox-webpack-plugin": "^6.6.0"
}
}