-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.68 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
{
"name": "travel-app",
"version": "0.0.1",
"description": "Nanodegree project",
"main": "index.js",
"scripts": {
"start": "run-s build-prod serve-prod",
"serve-prod": "node src/server/index.js",
"serve-dev": "nodemon ./src/server/index.js",
"test": "run-s test-clean test-run",
"test-clean": "rimraf coverage",
"test-run": "jest -w 1",
"build-prod": "webpack --config webpack.prod.js",
"build-dev": "webpack-dev-server --hot --config webpack.dev.js --open"
},
"author": "Peter Okwara",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.3",
"@babel/preset-env": "^7.16.0",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.5.1",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"html-webpack-plugin": "^5.5.0",
"jest": "^26.4.2",
"jest-fetch-mock": "^3.0.3",
"mini-css-extract-plugin": "^2.4.5",
"node-sass": "^6.0.1",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"sass-loader": "^12.3.0",
"style-loader": "^3.3.1",
"stylelint": "^14.1.0",
"stylelint-config-standard": "^24.0.0",
"terser-webpack-plugin": "^5.2.5",
"webpack": "^5.64.1",
"webpack-cli": "^4.9.1",
"workbox-webpack-plugin": "^6.4.1"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/runtime": "^7.16.3",
"axios": "^0.24.0",
"axios-mock-adapter": "^1.20.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"webpack-dev-server": "^4.5.0"
}
}