-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.66 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.66 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
{
"name": "react-simple-boilerplate",
"version": "1.0.0",
"description": "- react - typescript - lint / prettier - jest - storybook - emotionJS - webpack",
"main": "index.js",
"scripts": {
"dev": "webpack serve",
"build": "webpack --mode production",
"lint": "tsc --noEmit && eslint . --cache --ext .ts,.tsx",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"test": "jest",
"test-coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qkrdmstlr3/react-simple-boilerplate.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/qkrdmstlr3/react-simple-boilerplate/issues"
},
"homepage": "https://github.com/qkrdmstlr3/react-simple-boilerplate#readme",
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@storybook/addon-essentials": "^6.3.6",
"@storybook/addon-links": "^6.3.6",
"@storybook/builder-webpack5": "^6.3.10",
"@storybook/manager-webpack5": "^6.3.10",
"@storybook/react": "^6.3.6",
"@types/leaflet": "^1.7.8",
"@types/mapbox-gl": "^2.6.0",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.1.8",
"@types/regenerator-runtime": "^0.13.1",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"babel-loader": "^8.2.2",
"css-loader": "^6.2.0",
"dotenv-webpack": "^7.0.3",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.2.0",
"prettier": "^2.3.2",
"regenerator-runtime": "^0.13.9",
"ts-loader": "^9.2.4",
"webpack": "^5.47.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/jest": "^27.0.1",
"@types/react": "^17.0.15",
"babel-jest": "^27.0.6",
"jest": "^27.3.1",
"leaflet": "^1.7.1",
"mapbox-gl": "^2.6.1",
"mapbox-gl-compare": "^0.4.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-leaflet": "^3.2.2",
"react-map-gl": "^6.1.18",
"react-router-dom": "^5.2.0",
"ts-jest": "^27.0.4",
"typescript": "^4.3.5"
}
}