-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.65 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
{
"name": "chuck-norris-facts",
"version": "1.0.0",
"description": "Funny pet project that gets Chuck Norris facts from API.",
"main": "main.tsx",
"homepage": "https://firenz.github.io/chuck-norris-facts/",
"author": "Alicia G. <[email protected]>",
"license": "MIT",
"keywords": [
"pet-project",
"funny",
"chuck-norris",
"react",
"react-query",
"typescript",
"styled-components",
"webpack",
"babel",
"eslint",
"prettier",
"jest"
],
"scripts": {
"start": "rimraf dist && webpack-dev-server --mode development --open --config dev.webpack.config.js",
"test": "jest --verbose -c ./config/test/jest.json",
"test:watch": "npm test -- --watchAll -i --no-cache",
"test:coverage": "rimraf coverage && jest -c ./config/test/jest.coverage.json --verbose",
"lint": "eslint ./ --ignore-path .gitignore",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write \"{,!(node_modules)/**/}*.js\"",
"build:dev": "rimraf dist && webpack --mode development --config dev.webpack.config.js",
"build:prod": "rimraf dist && webpack --mode production --config prod.webpack.config.js",
"build:stats": "rimraf dist && webpack --mode development --config perf.webpack.config.js",
"deploy:gh-pages": "gh-pages-clean && gh-pages -d dist -b gh-pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Firenz/chuck-norris-facts.git"
},
"bugs": {
"url": "https://github.com/Firenz/chuck-norris-facts/issues"
},
"dependencies": {
"polished": "^3.6.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-query": "^2.5.13",
"styled-components": "^5.1.1"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/plugin-transform-regenerator": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@imaginary-cloud/eslint-config-react": "^1.0.1",
"@testing-library/jest-dom": "^5.11.3",
"@testing-library/react": "^10.4.8",
"@testing-library/react-hooks": "^3.4.1",
"@types/jest": "^26.0.10",
"@types/node": "^14.0.27",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"@types/styled-components": "^5.1.2",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"awesome-typescript-loader": "^5.2.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-jsx-remove-data-test-id": "^2.1.3",
"babel-plugin-styled-components": "^1.11.1",
"css-loader": "^4.2.1",
"eslint": "^7.7.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-html": "^6.0.3",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^2.5.1",
"file-loader": "^6.0.0",
"gh-pages": "^3.2.3",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.4.0",
"jest-styled-components": "^7.0.3",
"mini-css-extract-plugin": "^0.10.0",
"prettier": "^2.0.5",
"regenerator-runtime": "^0.13.7",
"rimraf": "^3.0.2",
"style-loader": "^1.2.1",
"svg-url-loader": "^6.0.0",
"ts-jest": "^26.3.0",
"typescript": "^3.9.7",
"typescript-plugin-styled-components": "^1.4.4",
"url-loader": "^4.1.0",
"webpack": "^4.44.1",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.1.1"
}
}