-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.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
{
"name": "catagram",
"version": "1.0.0",
"description": "Instagram style app for Cats only",
"main": "src/index.js",
"scripts": {
"start": "webpack serve --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"test": "standard && jest",
"test:ci": "standard && jest --ci",
"coverage": "jest --coverage --collectCoverageFrom='./src/**/*.js'",
"lint": "standard",
"lint:fix": "standard --fix",
"lint:css": "stylelint './src/**/*.js'",
"postinstall": "husky install"
},
"standard": {
"env": [
"jest"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/gunnx/Catagram.git"
},
"keywords": [
"cat",
"photos",
"grams",
"insta"
],
"author": "Keith Gunn",
"license": "ISC",
"bugs": {
"url": "https://github.com/gunnx/Catagram/issues"
},
"homepage": "https://github.com/gunnx/Catagram#readme",
"dependencies": {
"@loadable/component": "5.14.1",
"axios": "0.21.1",
"form-data": "3.0.0",
"prop-types": "15.7.2",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-error-boundary": "3.1.0",
"react-infinite-scroll-component": "5.1.0",
"react-router-dom": "5.2.0",
"react-spring": "8.0.27",
"styled-components": "5.2.1"
},
"devDependencies": {
"@babel/core": "7.12.10",
"@babel/preset-env": "7.12.11",
"@babel/preset-react": "7.12.10",
"@testing-library/dom": "7.29.4",
"@testing-library/jest-dom": "5.11.9",
"@testing-library/react": "11.2.3",
"@testing-library/react-hooks": "5.0.3",
"@testing-library/user-event": "12.6.2",
"babel-loader": "8.2.2",
"clean-webpack-plugin": "3.0.0",
"css-loader": "5.0.1",
"favicons": "6.2.0",
"favicons-webpack-plugin": "5.0.0-alpha.1",
"history": "5.0.0",
"html-webpack-plugin": "5.0.0-beta.5",
"husky": "5.0.6",
"identity-obj-proxy": "3.0.0",
"jest": "26.6.3",
"jest-localstorage-mock": "2.4.6",
"jest-styled-components": "7.0.3",
"react-test-renderer": "17.0.1",
"standard": "16.0.3",
"style-loader": "2.0.0",
"stylelint": "13.8.0",
"stylelint-config-recommended": "3.0.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-processor-styled-components": "1.10.0",
"webpack": "5.14.0",
"webpack-cli": "4.3.1",
"webpack-dev-server": "3.11.2",
"webpack-merge": "5.7.3"
}
}