-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 2.95 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
{
"name": "react-notes",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"release": "standard-version",
"lint": "npm run stylelint && npm run eslint && npm run prettier",
"lint:fix": "npm run stylelint -- --fix && npm run eslint -- --fix && npm run prettier -- --write",
"eslint": "eslint \"src/**/*.js\"",
"stylelint": "stylelint --syntax scss \"src/**/*.{css,scss}\"",
"prettier": "prettier --config .prettierrc -l \"src/**/*.{ts,js,json,css,scss}\"",
"storybook": "start-storybook -p 3001 -s public",
"build-storybook": "build-storybook -s public",
"coverage": "coveralls < coverage/lcov.info"
},
"dependencies": {
"classnames": "^2.2.6",
"cross-fetch": "^3.0.0",
"normalize.css": "^8.0.1",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-redux": "^6.0.0",
"react-router-dom": "^4.3.1",
"react-scripts": "^2.1.1",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@storybook/addon-actions": "^4.0.12",
"@storybook/addon-links": "^4.0.12",
"@storybook/addons": "^4.0.12",
"@storybook/react": "^4.0.12",
"babel-loader": "^8.0.4",
"coveralls": "^3.0.2",
"cz-conventional-changelog": "^2.1.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"enzyme-to-json": "^3.3.5",
"eslint-plugin-react": "^7.11.1",
"fetch-mock": "^7.3.0",
"husky": "^1.2.0",
"jest-enzyme": "^7.0.1",
"lint-staged": "^8.1.0",
"node-sass": "^4.11.0",
"prettier": "^1.15.3",
"puppeteer": "1.8.0",
"react-test-renderer": "^16.7.0",
"redux-devtools-extension": "^2.13.7",
"redux-mock-store": "^1.5.3",
"redux-persist": "^5.10.0",
"redux-test-utils": "^0.3.0",
"standard-version": "^4.4.0",
"stylelint": "^9.9.0",
"stylelint-config-prettier": "^4.0.0",
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-order": "^2.0.0",
"stylelint-scss": "^3.4.1",
"tslint-config-prettier": "^1.17.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix",
"git add"
],
"src/**/*.{css,scss}": [
"stylelint --syntax scss --fix",
"git add"
],
"src/**/*.{js,json,css,scss}": [
"prettier --config .prettierrc --write",
"git add"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!src/*.js",
"!src/stories/**"
]
}
}