-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.69 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "nearby-service-repo",
"description": "> Project description",
"author": "Tiffany Lee",
"license": "ISC",
"engines": {
"node": ">=6.13.0"
},
"scripts": {
"start-data": "node database/mongo/seed.js",
"start-server": "nodemon server/index.js",
"dev-react": "webpack -d --watch",
"build": "webpack -p",
"test": "jest --coverage --u",
"test-server": "mocha --exit",
"start": "node server/index.js"
},
"dependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@fortawesome/fontawesome-svg-core": "^1.2.22",
"@fortawesome/free-regular-svg-icons": "^5.10.2",
"@fortawesome/free-solid-svg-icons": "^5.10.2",
"@fortawesome/react-fontawesome": "^0.1.4",
"add": "^2.0.6",
"axios": "^0.19.0",
"babel": "^6.23.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-preset-env": "^1.7.0",
"bluebird": "^3.5.5",
"body-parser": "^1.19.0",
"cassandra-driver": "^4.1.0",
"chai-http": "^4.3.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"faker": "^4.1.0",
"jquery": "^3.5.0",
"mongoose": "^5.7.5",
"morgan": "^1.9.1",
"newrelic": "^5.11.0",
"path": "^0.12.7",
"pg": "^7.12.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-test-renderer": "^16.9.0",
"redis": "^2.8.0",
"styled-components": "^4.3.2"
},
"devDependencies": {
"@babel/preset-react": "^7.0.0",
"axios-mock-adapter": "^1.17.0",
"babel-eslint": "^10.0.3",
"chai": "^4.2.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.4.0",
"eslint": "^6.3.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-hackreactor": "github:hackreactor-labs/eslint-config-hackreactor",
"eslint-loader": "^3.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"grunt": "^1.0.4",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-uglify": "^4.0.1",
"jest": "^24.9.0",
"mocha": "^6.2.0",
"nodemon": "^1.19.1",
"pg-copy-streams": "^2.2.2",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.9"
},
"version": "1.0.0",
"main": ".eslintrc.js",
"repository": {
"type": "git",
"url": "git+https://github.com/housemania/nearby-service-repo.git"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"setupFiles": [
"./test/clientTests/setupTests.js"
]
},
"bugs": {
"url": "https://github.com/housemania/nearby-service-repo/issues"
},
"homepage": "https://github.com/housemania/nearby-service-repo#readme"
}