-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 3 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
{
"name": "rentlook",
"version": "0.0.1",
"description": "Front-end of Renteree website",
"main": "index.js",
"scripts": {
"dev": "parcel src/index.html --port 3000",
"lint": "npm run lint:eslint && npm run lint:style",
"lint:eslint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint ./src --ext .js,.jsx,.ts,.tsx --fix",
"lint:style": "npx stylelint \"./src/**/*.{js,jsx,ts,tsx,scss}\"",
"test": "echo \"No test specified\"",
"build": "npx parcel build src/index.html",
"extract-intl": "NODE_ENV=development extract-messages -l=en -o src/translations -d en --flat 'src/**/messages.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/renteree/rentlook.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/renteree/rentlook/issues"
},
"homepage": "https://github.com/renteree/rentlook#readme",
"browserslist": [
"since 2017-06"
],
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@material-ui/styles": "^4.10.0",
"@types/autosuggest-highlight": "^3.1.0",
"@types/phone": "^2.4.0",
"@types/uuid": "^8.0.1",
"autosuggest-highlight": "^3.1.1",
"axios": "^0.19.2",
"classnames": "^2.2.6",
"connected-react-router": "^6.8.0",
"dotenv": "^8.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"font-awesome": "^4.7.0",
"history": "^4.10.1",
"lodash": "^4.17.19",
"phone": "^2.4.14",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-intl": "^4.5.11",
"react-redux": "^7.2.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-saga": "^1.1.3",
"reselect": "^4.0.0",
"typesafe-actions": "^5.1.0",
"uuid": "^8.3.0"
},
"devDependencies": {
"@testing-library/react": "^10.0.4",
"@types/lodash": "^4.14.152",
"@types/node": "^14.0.1",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.8",
"@types/react-router-dom": "^5.1.5",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"cssnano": "^4.1.10",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-import-resolver-parcel": "^1.10.4",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^2.5.1",
"eslint-plugin-testing-library": "^3.1.3",
"extract-react-intl-messages": "^4.1.1",
"parcel-bundler": "^1.12.4",
"sass": "^1.26.5",
"stylelint": "^13.3.3",
"stylelint-config-sass-guidelines": "^7.0.0",
"ts-loader": "^7.0.4",
"typescript": "^3.9.2"
}
}