-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.29 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
{
"dependencies": {
"@tensorflow-models/mobilenet": "^2.0.4",
"@types/classnames": "^2.2.10",
"@types/lodash.debounce": "^4.0.6",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.9",
"@types/reselect": "^2.2.0",
"classnames": "^2.2.6",
"lodash.debounce": "^4.0.8",
"normalize.css": "^8.0.1",
"normalizr": "^3.6.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-icons": "^3.11.0",
"react-redux": "^7.2.1",
"redux": "^4.0.5",
"reselect": "^4.0.0"
},
"description": "Search for dogs",
"devDependencies": {
"@ridedott/eslint-config": "^2.2.23",
"@tensorflow/tfjs-converter": "^1.7.4",
"@tensorflow/tfjs-core": "^1.7.4",
"@types/enzyme": "^3.10.6",
"@types/jest": "^26.0.13",
"@types/redux-mock-store": "^1.0.2",
"@types/webpack-env": "^1.15.2",
"autoprefixer": "^9.8.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^4.3.0",
"cssnano": "^4.1.10",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.4",
"eslint": "^7.8.1",
"eslint-plugin-react": "^7.20.6",
"html-loader": "^1.3.0",
"html-webpack-plugin": "^4.4.1",
"husky": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.4.2",
"jest-environment-enzyme": "^7.1.2",
"jest-enzyme": "^7.1.2",
"lint-staged": "^10.3.0",
"npm-run-all": "^4.1.5",
"postcss-loader": "^4.0.1",
"prettier": "^2.1.1",
"redux-devtools-extension": "^2.13.8",
"redux-mock-store": "^1.5.4",
"redux-thunk": "^2.3.0",
"sass": "^1.26.10",
"sass-loader": "^10.0.2",
"style-loader": "^1.2.1",
"stylelint": "^13.7.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.18.0",
"ts-jest": "^26.3.0",
"ts-loader": "^8.0.3",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"engines": {
"node": "12",
"npm": ">=6.13.4"
},
"files": [
"src"
],
"husky": {
"hooks": {
"pre-commit": "npm run husky:pre-commit"
}
},
"license": "UNLICENSED",
"lint-staged": {
"*.scss": [
"stylelint --fix"
],
"*.{ts,tsx}": [
"eslint --fix --resolve-plugins-relative-to \"./node_modules/@ridedott/eslint-config\""
],
"*.{css,js,json,md,ts,yaml,yml}": [
"prettier --write"
]
},
"name": "thedogbook",
"repository": "",
"scripts": {
"format": "prettier --check \"**/*.{scss,css,js,json,md,ts,tsx,yml,yaml}\"",
"format:fix": "prettier --write \"**/*.{scss,css,js,json,md,ts,tsx,yml,yaml}\"",
"husky:lint-staged": "lint-staged",
"husky:pre-commit": "run-p husky:lint-staged",
"lint": "run-p lint:style lint:ts",
"lint:style": "stylelint 'src/**/*.scss'",
"lint:style:fix": "npm run lint:style -- --fix",
"lint:fix": "run-p lint:*:fix",
"lint:ts": "eslint --no-error-on-unmatched-pattern --resolve-plugins-relative-to \"./node_modules/@ridedott/eslint-config\" \"**/*.ts\" \"**/*.tsx\"",
"lint:ts:fix": "npm run lint:ts -- --fix",
"start": "webpack-dev-server --config webpack.config.js",
"test": "jest",
"types": "tsc --noEmit --incremental false --tsBuildInfoFile null"
},
"version": "1.0.0"
}