-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.29 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.29 KB
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
{
"name": "tours_service",
"version": "1.0.0",
"description": "Service to explore nearby tour experiences",
"main": "index.js",
"scripts": {
"start": "nodemon server",
"build": "webpack -w",
"seed": "node database/seed.js",
"test": "jest --coverage --runInBand --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tripadvisorgroup1/tours_service.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tripadvisorgroup1/tours_service/issues"
},
"homepage": "https://github.com/tripadvisorgroup1/tours_service#readme",
"dependencies": {
"axios": "^0.21.0",
"compression": "^1.7.4",
"express": "^4.17.1",
"mysql": "^2.18.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.1",
"babel-plugin-styled-components": "^1.12.0",
"bluebird": "^3.7.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"faker": "^5.1.0",
"jest": "^26.6.3",
"morgan": "^1.10.0",
"path": "^0.12.7",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0"
}
}