This repository has been archived by the owner on Aug 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
124 lines (124 loc) · 3.45 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
117
118
119
120
121
122
123
124
{
"name": "react-nights-2019",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "NODE_ENV=production node server/index.js",
"build": "next build",
"dev": "node server/index.js",
"format": "prettier --write '*/**/*.{js,css,md,json}'",
"lint:js": "eslint --ext .js,.ts,.tsx . --ignore-path .gitignore --fix",
"lint:css": "stylelint 'src/**/*.{js,ts,tsx}'",
"lint:text": "textlint",
"lint:textlint": "textlint '*/**/*.md'",
"lint:textlint:fix": "textlint --fix '*/**/*.md'",
"lint:remarklint": "remark --quiet '*/**/*.md'",
"type-check": "tsc",
"cypress:open": "cypress open"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!/node_modules/",
"!src/index.js",
"!src/store/index.js"
]
},
"remark": "@strv/remark-config",
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"prettier --write",
"stylelint",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
],
"*.md": [
"prettier --write",
"remark",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn type-check"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"@zeit/next-css": "^1.0.1",
"@zeit/next-typescript": "^1.1.1",
"compression": "^1.7.4",
"express": "^4.17.1",
"formik": "^1.5.7",
"isomorphic-fetch": "^2.2.1",
"next": "^9.3.2",
"next-redux-wrapper": "^3.0.0-alpha.3",
"qs": "^6.7.0",
"ramda": "^0.26.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.0.3",
"react-toastify": "^5.2.1",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"sanitize.css": "^10.0.0",
"styled-components": "^4.3.1",
"styled-system": "^5.0.5",
"yup": "^0.27.0"
},
"devDependencies": {
"@strv/eslint-config-react": "^2.1.1",
"@strv/eslint-config-typescript": "^1.1.1",
"@strv/stylelint-config-styled-components": "^1.0.1",
"@strv/remark-config": "^1.0.1",
"@types/isomorphic-fetch": "^0.0.35",
"@types/jest": "^24.0.13",
"@types/next": "^8.0.5",
"@types/next-redux-wrapper": "^2.0.2",
"@types/node": "^11.13.8",
"@types/qs": "^6.5.3",
"@types/ramda": "^0.26.9",
"@types/react": "^16.8.19",
"@types/react-dom": "^16.8.4",
"@types/react-redux": "^7.0.9",
"@types/styled-components": "^4.1.16",
"@types/styled-system": "^4.2.1",
"@types/yup": "^0.26.14",
"@typescript-eslint/parser": "^1.9.0",
"babel-eslint": "^10.0.1",
"babel-plugin-styled-components": "^1.10.0",
"cypress": "^3.3.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-cypress": "^2.2.1",
"eslint-plugin-react-hooks": "^1.6.0",
"fetch-mock": "^7.3.1",
"husky": "^2.4.0",
"jest-styled-components": "^6.3.1",
"lint-staged": "^8.2.0",
"prettier": "^1.18.2",
"react-testing-library": "^6.1.2",
"stylelint": "^10.1.0",
"stylelint-config-prettier": "^5.2.0",
"remark-cli": "^6.0.1",
"textlint": "^11.2.5",
"textlint-filter-rule-comments": "^1.2.2",
"textlint-rule-apostrophe": "^1.0.0",
"textlint-rule-common-misspellings": "^1.0.1",
"textlint-rule-stop-words": "^1.0.13",
"textlint-rule-terminology": "^1.1.30",
"textlint-rule-title-case": "^1.0.0",
"textlint-rule-write-good": "^1.6.2",
"typescript": "3.3.4000"
}
}