forked from brianblakely/atlantis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 2.56 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
107
108
109
110
111
112
113
114
115
116
{
"name": "atlantis",
"version": "0.1.0",
"private": true,
"homepage": "http://brianblakely.github.io/atlantis",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public"
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">0.25%",
"not op_mini all",
"ie 11"
]
},
"eslintConfig": {
"extends": [
"react-app",
"plugin:import/errors",
"plugin:import/warnings"
],
"plugins": [
"prettier",
"react",
"import"
],
"rules": {
"prettier/prettier": "warn",
"react/prop-types": "error",
"import/order": [
"error",
{
"groups": [
"builtin",
"external",
"internal",
"parent",
"sibling",
"index"
],
"newlines-between": "always"
}
],
"quotes": [
"error",
"backtick"
],
"curly": "error",
"no-console": [
"warn",
{
"allow": [
"debug",
"warn",
"error",
"info"
]
}
]
}
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"prettier --write",
"eslint --fix",
"git add"
],
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md,html}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@material-ui/core": "^4.9.0",
"@material-ui/icons": "^4.5.1",
"idb-keyval": "^3.2.0",
"jszip": "^3.2.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"spark-md5": "^3.0.0"
},
"devDependencies": {
"@storybook/addon-actions": "^5.3.9",
"@storybook/addon-links": "^5.3.9",
"@storybook/addons": "^5.3.9",
"@storybook/preset-create-react-app": "^1.5.2",
"@storybook/react": "^5.3.9",
"@testing-library/jest-dom": "^5.0.2",
"@testing-library/react": "^9.4.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.0",
"fake-indexeddb": "^3.0.0",
"gh-pages": "^2.2.0",
"husky": "^4.2.1",
"lint-staged": "^10.0.6",
"prettier": "^1.19.1",
"react-scripts": "^3.3.0"
}
}