-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.75 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
{
"name": "auto-lookup",
"version": "1.0.0",
"description": "app for looking cars by their numbers, written in typescript",
"main": "build/index.js",
"scripts": {
"dev": "webpack-dev-server --config ./webpack.dev.js",
"build:prod": "rm -rf ./build && webpack --config ./webpack.prod.js",
"analyze:prod": "rm -rf ./build && webpack --config ./webpack.prod.analyze.js",
"start:server": "node server",
"eslint": "eslint ./src/**/*"
},
"dependencies": {
"final-form": "^4.18.6",
"prettier-stylelint": "^0.4.2",
"query-string": "^6.9.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-fetching-library": "^1.5.12",
"react-final-form": "^6.3.3",
"react-redux": "^7.1.3",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"redux": "^4.0.4",
"redux-actions": "^2.6.5",
"redux-form-validators": "^3.3.2",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"stylelint-config-standard": "^19.0.0"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@babel/runtime": "^7.7.4",
"@types/history": "^4.7.3",
"@types/node": "^12.12.14",
"@types/react": "^16.9.14",
"@types/react-dom": "^16.9.4",
"@types/react-redux": "^7.1.5",
"@types/react-router": "^5.1.3",
"@types/react-router-dom": "^4.3.5",
"@types/redux-actions": "^2.6.1",
"@types/webpack-env": "^1.14.1",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.1",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.17.0",
"file-loader": "^4.3.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.8.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"prettier": "^1.19.1",
"prop-types": "^15.7.2",
"serve": "^11.2.0",
"style-loader": "^1.0.1",
"stylelint": "^10.1.0",
"stylelint-config-recommended-scss": "^3.3.0",
"stylelint-scss": "^3.13.0",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^3.7.2",
"webpack": "^4.41.2",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/PaulTime/auto-lookup/issues"
},
"homepage": "https://github.com/PaulTime/auto-lookup#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/PaulTime/auto-lookup.git"
}
}