-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.04 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
{
"name": "catwiki",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"scripts": {
"test": "jest ",
"test:watch": "jest --watch ",
"test:update": "jest --updateSnapshot",
"start": "webpack serve --mode development --history-api-fallback",
"build": "webpack --mode production",
"format": "prettier --write \"{*.js,src/**/*.{js,jsx}}\"",
"lint": "eslint src/ --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NightDreams/Catwiki.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/NightDreams/Catwiki/issues"
},
"homepage": "https://github.com/NightDreams/Catwiki#readme",
"dependencies": {
"@reach/router": "^1.3.4",
"axios": "^0.21.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-axios": "^2.0.4",
"react-dom": "^17.0.1",
"react-icons": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@testing-library/react-hooks": "^5.1.2",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.1",
"babel-loader": "^8.2.2",
"css-loader": "^5.0.1",
"enzyme": "^3.11.0",
"file-loader": "^6.2.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.5.1",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"mini-css-extract-plugin": "^1.3.3",
"react-test-renderer": "^17.0.2",
"stylus": "^0.54.8",
"stylus-loader": "^4.3.2",
"webpack": "^5.12.2",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.1"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/src/__test__/setupTest.js"
],
"moduleNameMapper": {
"\\.(styl|css)$": "<rootDir>/src/__mocks__/styleMock.js",
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/src/__mocks__/fileMock.js"
}
}
}