-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.92 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
{
"name": "react-starter-project",
"version": "0.0.5",
"description": "The starting environment template for your react project",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --mode development --open --hot",
"build": "cross-env NODE_ENV=production webpack --mode production",
"test": "npx jest",
"lint": "npx eslint --ext .js,.jsx,.ts,.tsx --fix ./",
"check": "npm run lint && npm test",
"analyzer": "webpack --json > analyzer.json && webpack-bundle-analyzer analyzer.json",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"browserslist": "> 0.25%, not dead",
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run check"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/eternal-system/react-starter.git"
},
"keywords": [
"react",
"jest",
"webpack",
"webpack-cli",
"webpack-dev-server",
"storybook",
"husky",
"babel",
"eslint"
],
"author": "Kalachev Vlad",
"license": "ISC",
"bugs": {
"url": "https://github.com/eternal-system/react-starter/issues"
},
"homepage": "https://github.com/eternal-system/react-starter#readme",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@babel/preset-typescript": "^7.10.1",
"@storybook/addon-actions": "^5.3.19",
"@storybook/addon-links": "^5.3.19",
"@storybook/addons": "^5.3.19",
"@storybook/react": "^5.3.19",
"@types/jest": "^25.2.3",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"clean-terminal-webpack-plugin": "^3.0.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.1",
"cross-env": "^7.0.2",
"css-loader": "^3.5.3",
"eslint": "^7.1.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-standard": "^4.0.1",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"sass": "^1.26.7",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^3.0.2",
"typescript": "^3.9.3",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0"
}
}