-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·51 lines (51 loc) · 1.28 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
{
"name": "travel-app",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "node src/server/index.js",
"build-prod": "webpack --config webpack.prod.js",
"build-dev": "webpack-dev-server --config webpack.dev.js --open"
},
"jest": {
"verbose": true,
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/node_modules/**"
],
"moduleNameMapper": {
"\\.(scss)$": "<rootDir>/__mocks__/styleMock.js"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"dotenv": "^10.0.0",
"express": "^4.17.1",
"form-data": "^4.0.0",
"node-fetch": "^2.1.0",
"webpack-cli": "^4.9.1"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.5.1",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.4.5",
"mini-css-extract-plugin": "^2.4.5",
"node-sass": "^7.0.0",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"sass": "^1.45.0",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^4.2.3",
"webpack": "^5.65.0",
"webpack-dev-server": "^4.6.0",
"workbox-webpack-plugin": "^6.4.2"
}
}