-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
99 lines (99 loc) · 3.17 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
{
"name": "chat-app",
"version": "1.0.0",
"description": "A CRUD (Create, Read, Update, Delete) chat application built with Typescript, React, Firebase and Immutable.JS",
"repository": {
"type": "git",
"url": "https://github.com/csantiago132/chat-app.git"
},
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"docz:dev": "docz dev",
"docz:build": "docz build",
"prettier:js": "prettier --config .prettierrc --write *.{js, jsx}",
"prettier:tsx": "prettier --config .prettierrc --write *.{tsx, ts}",
"prettier:json": "prettier --config .prettierrc --write *.json",
"prettier:md": "prettier --config .prettierrc --print-width 80 --write **/*.{md, mdx}",
"stylelint:css": "./node_modules/.bin/stylelint '**/*.{tsx, ts}'",
"tslint": "./node_modules/.bin/tslint -c ./tslint.js --project ./tsconfig.json"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{tsx, ts}": [
"yarn run prettier:tsx",
"yarn run tslint",
"yarn run stylelint:css",
"git add"
],
"*.json": ["yarn run prettier:json", "git add"],
"*.{md, mdx}": ["yarn run prettier:md", "git add"],
"*.{jsx, js}": ["yarn run prettier:js", "git add"]
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [">0.2%", "not dead", "not ie <= 11", "not op_mini all"],
"dependencies": {
"bourbon": "^5.1.0",
"bourbon-neat": "2.1.0",
"firebase": "5.5.2",
"history": "^4.7.2",
"immutable": "^3.8.2",
"node-sass": "^4.9.4",
"polished": "^2.3.0",
"react": "^16.6.0",
"react-content-loader": "^3.2.0",
"react-dom": "^16.6.0",
"react-headroom": "^2.2.4",
"react-helmet": "^5.2.0",
"react-loadable": "^5.5.0",
"react-router-dom": "^4.3.1",
"react-router-scroll": "^0.4.4",
"react-scripts": "2.1.0",
"react-styled-flexboxgrid": "^2.6.0",
"sanitize.css": "^8.0.0",
"styled-components": "^4.0.3",
"warning": "^4.0.2"
},
"devDependencies": {
"@firebase/app-types": "^0.3.2",
"@types/enzyme": "^3.1.14",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/jest": "^23.3.8",
"@types/node": "^10.12.1",
"@types/react": "^16.4.18",
"@types/react-content-loader": "^3.1.3",
"@types/react-dom": "^16.0.9",
"@types/react-helmet": "^5.0.7",
"@types/react-loadable": "^5.4.1",
"@types/react-router-dom": "^4.3.1",
"@types/styled-components": "^4.0.3",
"docz": "^0.12.9",
"docz-core": "^0.12.9",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"husky": "^1.1.2",
"lint-staged": "^8.0.4",
"prettier": "^1.14.3",
"prettier-stylelint": "^0.4.2",
"stylelint": "^9.8.0",
"stylelint-config-recommended": "^2.1.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-order": "^1.0.0",
"stylelint-processor-styled-components": "^1.5.0",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-react": "^3.6.0",
"tslint-react-a11y": "^1.0.0",
"typescript": "^3.1.4"
}
}