-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.92 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
{
"name": "john-sprague-component-home-value",
"description": "Front end capstone project, buy a home from zillow.com, home value component.",
"author": "John Sprague",
"license": "ISC",
"main": "index.js",
"engines": {
"node": ">=6.13.0"
},
"scripts": {
"react-dev": "webpack -d --watch ",
"start": "node server/index.js",
"seed-db": "node database/seeder.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --colors",
"generate-images": "node util/generator.js"
},
"dependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-react": "^7.0.0",
"ajv": "^6.8.1",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"mongo": "^0.1.0",
"mongoose": "^5.4.10",
"path": "^0.12.7",
"popper": "^1.0.1",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"shelljs": "^0.8.3"
},
"devDependencies": {
"@babel/preset-env": "^7.3.1",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.5",
"enzyme": "^3.8.0",
"axios": "^0.18.0",
"babel-plugin-styled-components": "^1.10.0",
"eslint": "^5.13.0",
"faker": "^4.1.0",
"jest-styled-components": "^6.3.1",
"nodemon": "^1.18.9",
"react-test-renderer": "^16.8.2",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor.git",
"eslint-plugin-import": "^2.16.0"
},
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/xillow-talk/john-sprague-component-home-value.git"
},
"keywords": [
"front-end-capstone-project"
],
"bugs": {
"url": "https://github.com/xillow-talk/john-sprague-component-home-value/issues"
},
"homepage": "https://github.com/xillow-talk/john-sprague-component-home-value#readme",
"resolutions": {
"ajv": "6.8.1"
}
}