-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 4.37 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "suggest",
"version": "0.0.1",
"description": "Suggesting locations",
"main": "index.js",
"scripts": {
"prepare": "husky install && husky add .husky/pre-commit 'npx lint-staged'",
"heroku-prebuild": "npm install --dev && npm run build:client-prod",
"lint:eslint": "eslint -c .eslintrc.json",
"lint:types": "tsc -p tsconfig.json --pretty --noEmit --noEmitOnError",
"lint:css": "stylelint",
"full-lint": "npm run lint:eslint && npm run lint:css && npm run lint:types",
"prettier": "prettier --write './**/*{js,ts,tsx,json}'",
"test": "jest",
"test:related": "jest --findRelatedTests",
"coverage": "jest --coverage",
"build:client-dev": "NODE_ENV=development webpack --config ./configs/webpack/client/webpack.dev.js --mode development --color",
"build:client-prod": "NODE_ENV=production webpack --config ./configs/webpack/client/webpack.prod.js --mode production --color",
"start:client-dev": "NODE_ENV=development webpack serve --config ./configs/webpack/client/webpack.dev.js --mode development --color --hot",
"start:dev": "npm run start:client-dev",
"start:prod": "node server/index.js",
"start": "npm run start:prod"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:AntonLantukh/suggest.git"
},
"keywords": [
"suggest",
"booking",
"rentalcars"
],
"author": "Anton Lantukh",
"license": "ISC",
"bugs": {
"url": "https://github.com/AntonLantukh/suggest/issues"
},
"homepage": "https://github.com/AntonLantukh/suggest#readme",
"devDependencies": {
"@babel/core": "7.14.3",
"@babel/plugin-proposal-class-properties": "7.13.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.14.2",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-runtime": "7.14.3",
"@babel/preset-env": "7.14.4",
"@babel/preset-react": "7.13.13",
"@babel/preset-typescript": "7.13.0",
"@babel/runtime": "7.14.0",
"@testing-library/react": "11.2.7",
"@types/babel__generator": "*",
"@types/jest": "26.0.23",
"@types/react": "17.0.1",
"@types/react-dom": "17.0.1",
"@types/react-router": "5.1.14",
"@types/react-router-config": "5.0.2",
"@types/react-router-dom": "5.1.7",
"@types/webpack": "5.28.0",
"@types/webpack-dev-middleware": "5.0.0",
"@types/webpack-dev-server": "3.11.4",
"@types/webpack-hot-middleware": "2.25.4",
"@typescript-eslint/eslint-plugin": "4.26.0",
"@typescript-eslint/parser": "4.26.0",
"autoprefixer": "10.2.6",
"babel-jest": "27.0.2",
"babel-loader": "8.2.2",
"browserlist": "1.0.1",
"clean-webpack-plugin": "3.0.0",
"copy-webpack-plugin": "9.0.0",
"css-loader": "5.2.6",
"css-minimizer-webpack-plugin": "3.0.1",
"eslint": "7.28.0",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-typescript": "2.4.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jest": "24.3.6",
"eslint-plugin-json": "3.0.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.24.0",
"eslint-plugin-react-hooks": "4.2.0",
"html-webpack-plugin": "5.3.1",
"husky": "6.0.0",
"jest": "27.0.4",
"lint-staged": "11.0.0",
"mini-css-extract-plugin": "1.6.0",
"postcss-loader": "5.3.0",
"prettier": "2.3.0",
"prettier-stylelint": "0.4.2",
"sass": "1.34.1",
"sass-loader": "12.0.0",
"style-loader": "2.0.0",
"stylelint": "13.13.1",
"stylelint-config-idiomatic-order": "5.0.0",
"stylelint-config-recommended": "5.0.0",
"stylelint-config-standard": "22.0.0",
"stylelint-prettier": "1.2.0",
"ts-jest": "27.0.3",
"tslib": "2.2.0",
"typescript": "4.3.2",
"webpack": "5.38.1",
"webpack-cli": "4.7.0",
"webpack-dev-server": "3.11.2"
},
"dependencies": {
"@babel/runtime-corejs3": "7.14.0",
"@hot-loader/react-dom": "17.0.1",
"axios": "0.21.1",
"express": "4.17.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-hot-loader": "4.13.0"
}
}