-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.41 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.41 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "premium-property-finder",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"clean": "rm -rf .cache dist",
"start": "cross-env NODE_ENV=development parcel ./src/index.html",
"prod": "cross-env NODE_ENV=production npm run clean && parcel build ./src/index.html --no-source-maps",
"lint": "eslint ./src",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --watch",
"test:update": "jest --updateSnapshot",
"e2e": "start-server-and-test start http://localhost:1234 cypress:run",
"cypress:run": "cypress run",
"cypress:open": "cypress open"
},
"keywords": [],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jpreecedev/premium-property-finder.git"
},
"bugs": {
"url": "https://github.com/jpreecedev/premium-property-finder/issues"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-async-to-generator": "^7.2.0",
"@babel/plugin-transform-react-constant-elements": "^7.2.0",
"@babel/plugin-transform-react-inline-elements": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.2.0",
"@react-mock/fetch": "^0.3.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"cross-env": "^5.2.0",
"cypress": "^3.1.4",
"eslint": "^5.12.1",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-cypress": "^2.2.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jest": "^22.1.3",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.6.0",
"jest-dom": "^3.0.0",
"jest-fetch-mock": "^2.1.0",
"node-sass": "^4.11.0",
"parcel-bundler": "^1.11.0",
"parcel-plugin-static-files-copy": "^2.0.0",
"postcss-modules": "^1.4.1",
"prettier": "^1.16.0",
"react-hot-loader": "^4.6.3",
"react-test-renderer": "^16.7.0",
"react-testing-library": "^5.4.4",
"regenerator-runtime": "^0.13.1",
"start-server-and-test": "^1.7.11",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.2.0"
},
"dependencies": {
"@reach/router": "^1.2.1",
"classnames": "^2.2.6",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"spectre.css": "^0.5.8"
},
"browserslist": {
"production": [
"> 1%",
"ie 10"
],
"development": [
"last 1 chrome version",
"last 1 firefox version"
]
},
"engines": {
"node": ">=8.11.3"
},
"staticPath": "public",
"jest": {
"automock": false,
"setupFiles": [
"./setup.config.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/cypress/"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less|scss|sass)$": "identity-obj-proxy"
}
}
}