-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.62 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
57
58
59
60
61
{
"name": "udacity_travel_app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node src/server/index.js",
"build-prod": "webpack --config webpack.prod.js",
"build-dev": "webpack serve --config webpack.dev.js --open",
"test": "cross-env NODE_ENV=test jest --testTimeout=10000"
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"form-data": "^4.0.0",
"node-fetch": "^2.6.1",
"webpack": "^5.30.0"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.13.12",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.2.0",
"css-minimizer-webpack-plugin": "^1.3.0",
"html-webpack-plugin": "^5.3.1",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.4.0",
"node-sass": "^5.0.0",
"regenerator-runtime": "^0.13.7",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"supertest": "^6.1.3",
"terser-webpack-plugin": "^5.1.1",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.5.1",
"workbox-webpack-plugin": "^6.1.2"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"modulePaths": [
"<rootDir>"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/danieljungdong/travelapp.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/danieljungdong/travelapp/issues"
},
"homepage": "https://github.com/danieljungdong/travelapp#readme"
}