-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.7 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
{
"author": "Paolo Leopardi <[email protected]>",
"dependencies": {
"@emotion/core": "^10.0.28",
"@types/react-redux": "^7.1.7",
"emotion-theming": "^10.0.27",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"redux": "^4.0.5"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-info": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/react": "^5.3.18",
"@types/jest": "^25.2.1",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/redux-logger": "^3.0.7",
"@types/webpack": "^4.41.12",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"babel-loader": "^8.1.0",
"dotenv-webpack": "^1.7.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"gh-pages": "^2.2.0",
"html-webpack-plugin": "^4.2.0",
"husky": "^4.2.5",
"jest": "^25.4.0",
"lint-staged": "^10.1.6",
"prettier": "^2.0.4",
"react-docgen-typescript-loader": "^3.7.2",
"redux-logger": "^3.0.6",
"serve": "^11.3.0",
"ts-jest": "^25.4.0",
"ts-loader": "^7.0.1",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"homepage": "https://pleopardi.github.io/react-clean-architecture-example/",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"license": "MIT",
"lint-staged": {
"*.+(js,jsx,ts,tsx)": [
"eslint --fix",
"git add"
],
"*.+(css,json,md,mdx)": [
"prettier --write",
"git add"
]
},
"name": "react-clean-architecture-example",
"private": true,
"repository": "https://github.com/pleopardi/react-clean-architecture-example.git",
"scripts": {
"build": "yarn clean && webpack --env.NODE_ENV='production' --mode production",
"build-storybook": "build-storybook",
"clean": "rm -rf build",
"deploy": "gh-pages -d build",
"dev": "webpack-dev-server --env.NODE_ENV='development' --hot --mode development --open",
"format": "prettier --write 'src/**/*.{css,js,jsx,json,md,mdx,ts,tsx}'",
"lint": "eslint --fix --quiet 'src/**/*.{js,jsx,ts,tsx}'",
"predeploy": "yarn build",
"reset": "rm -rf build && rm -rf node_modules && yarn",
"serve": "yarn build && node_modules/.bin/serve build",
"storybook": "start-storybook -p 6006",
"test": "jest --watch"
},
"version": "1.1.1"
}