-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.4 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
{
"name": "home-helper2",
"version": "0.1.0",
"private": true,
"dependencies": {
"color": "^3.0.0",
"firebase": "^5.0.4",
"prop-types": "^15.6.1",
"ramda": "^0.25.0",
"react": "^16.8.0",
"react-animate-height": "^1.0.2",
"react-dom": "^16.8.0",
"react-extra-prop-types": "^0.3.1",
"react-helmet": "^5.2.1",
"react-icons": "^2.2.7",
"react-redux": "^7.1.0",
"react-router-dom": "^4.2.2",
"react-scripts": "3.0.1",
"redux": "^4.0.0",
"redux-devtools-extension": "^2.13.2",
"redux-saga": "^0.16.0",
"styled-components": "^4.2.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"unit-tests": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 9009 -s public",
"lint:css": "stylelint './src/**/*.js'",
"lint-tests": "./node_modules/.bin/eslint ./src",
"test": "npm run lint-tests && npm run unit-tests",
"deploy": "npm run build && node deploy",
"build-storybook": "build-storybook -s public"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-commit": "yarn test"
}
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@storybook/addon-a11y": "^5.2.0-beta.40",
"@storybook/addon-actions": "^5.2.0-beta.40",
"@storybook/addon-backgrounds": "^5.2.0-beta.40",
"@storybook/addon-console": "^1.2.1",
"@storybook/addon-docs": "^5.2.0-beta.40",
"@storybook/addon-knobs": "^5.2.0-beta.40",
"@storybook/addon-links": "^5.2.0-beta.40",
"@storybook/addon-viewport": "^5.2.0-beta.40",
"@storybook/addons": "^5.2.0-beta.40",
"@storybook/react": "^5.2.0-beta.40",
"babel-loader": "8.0.5",
"dotenv": "^6.0.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-html": "^4.0.2",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"ftp-deploy": "^2.1.2",
"husky": "^1.0.0-rc.8",
"prettier": "^1.13.7",
"stylelint": "^9.2.0",
"stylelint-config-recommended": "^2.1.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.3.1"
}
}