-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "",
"version": "",
"description": "",
"author": "",
"license": "",
"engines": {
"node": ">=12.18.1"
},
"scripts": {
"server-dev": "nodemon server/index.js",
"start": "node server/index.js",
"seed": "node server/database/seeder.js",
"test": "node_modules/.bin/jest spec --notify --coverage",
"react-dev": "webpack -d --watch",
"build-production": "webpack --config webpack.prod.js"
},
"jest": {
"verbose": false,
"setupFilesAfterEnv": [
"<rootDir>spec/setupTests.js"
],
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"client"
],
"transform": {
"^.+\\.(js||jsx)$": "babel-jest",
"^.+\\.svg$": "jest-svg-transformer"
},
"testURL": "http://localhost:3000/hostels/100"
},
"dependencies": {
"@babel/preset-react": "^7.10.4",
"aws-sdk": "^2.747.0",
"axios": "^0.19.2",
"babel-polyfill": "^6.26.0",
"cors": "^2.8.5",
"csv-writer": "^1.6.0",
"express": "^4.17.1",
"jquery": "^3.5.1",
"mongodb": "^3.6.0",
"newrelic": "^6.13.0",
"path": "^0.12.7",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-svg-loader": "^3.0.3",
"styled-components": "^5.1.1",
"svg-inline-loader": "^0.8.2",
"svg-inline-react": "^3.2.0",
"url": "^0.11.0",
"webpack-merge": "^5.1.2"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"artillery": "^1.6.1",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.3",
"eslint": "^7.6.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"jest": "^26.2.2",
"jest-svg-transformer": "^1.0.0",
"nodemon": "^2.0.4",
"supertest": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
}
}