forked from react-boilerplate/react-boilerplate-cra-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·177 lines (177 loc) · 5.76 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
{
"name": "o-base",
"description": "React starter project",
"version": "0.1.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/willscott085/o-base"
},
"license": "MIT",
"engines": {
"npm": ">=6.4.1",
"node": ">=12.13.1",
"yarn": "^1.17.3"
},
"bugs": {
"url": "https://github.com/willscott085/o-base/issues"
},
"main": "template.json",
"files": [
"template",
"template.json"
],
"keywords": [
"react",
"create-react-app",
"template",
"recoil",
"react-boilerplate",
"styled-components"
],
"scripts": {
"// ---DEFAULT CRA---": "",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"// ---TEMPLATE---": "Scripts will be also in the template",
"start:prod": "npm run build && serve -s build",
"test:generators": "ts-node --project=./internals/ts-node.tsconfig.json ./internals/testing/test-generators.ts",
"checkTs": "tsc --noEmit",
"eslint": "eslint --ext js,ts,tsx",
"lint": "npm run eslint -- src",
"lint:fix": "npm run eslint -- --fix src",
"lint:css": "stylelint src/**/*.css",
"generate": "cross-env TS_NODE_PROJECT='./internals/ts-node.tsconfig.json' plop --plopfile internals/generators/plopfile.ts",
"cleanAndSetup": "ts-node --project=./internals/ts-node.tsconfig.json ./internals/scripts/clean.ts",
"prettify": "prettier --write",
"// ---TESTING TEMPLATE---": "",
"verify-startingTemplate-changes": "ts-node --project=./internals/ts-node.tsconfig.json ./internals/scripts/verify-startingTemplate-changes.ts",
"test:all": "npm run test -- --watchAll=false",
"test:coverage": "npm run test:all -- --coverage",
"test:cra": "npm run create:cra-app && cd generated-cra-app && npm run test:generators && npm run lint && npm run checkTs && npm run cleanAndSetup && npm run lint && npm run checkTs",
"// ---BUILDING TEMPLATE---": "",
"create:npm-package": "ts-node --project=./internals/ts-node.tsconfig.json ./internals/scripts/create-npm-package.script.ts",
"create:cra-app": "ts-node --project=./internals/ts-node.tsconfig.json ./internals/scripts/create-cra-app.script.ts",
"// ---PUBLISHING---": "",
"publish:github": "cross-env PUBLIC_URL='/react-boilerplate-cra-template' npm run build && gh-pages -d build",
"changelog": "ts-node --project=./internals/ts-node.tsconfig.json ./internals/scripts/create-changelog.script.ts",
"release": "standard-version",
"publish:npm": "npm run create:npm-package && npm publish .cra-template-rb"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"npm run eslint -- --fix"
],
"*.{md,json}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run checkTs && lint-staged && npm run verify-startingTemplate-changes",
"prepare-commit-msg": "devmoji -e",
"commit-msg": "if git-branch-is dev; then commitlint -E HUSKY_GIT_PARAMS; fi"
}
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!src/**/*/*.d.ts",
"!src/**/*/Loadable.{js,jsx,ts,tsx}",
"!src/**/*/types.ts",
"!src/index.tsx",
"!src/serviceWorker.ts"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
}
},
"dependencies": {
"@reduxjs/toolkit": "1.3.2",
"fontfaceobserver": "2.1.0",
"i18next": "19.3.4",
"i18next-browser-languagedetector": "4.0.2",
"react": "16.13.0",
"react-app-polyfill": "1.0.6",
"react-dom": "16.13.0",
"react-helmet-async": "1.0.4",
"react-i18next": "11.3.4",
"react-redux": "7.2.0",
"react-router-dom": "5.1.2",
"redux-injectors": "1.3.0",
"redux-saga": "1.1.3",
"sanitize.css": "11.0.0",
"styled-components": "5.0.1"
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@testing-library/jest-dom": "5.1.1",
"@testing-library/react": "10.0.1",
"@types/fontfaceobserver": "0.0.6",
"@types/jest": "25.1.4",
"@types/node": "13.9.3",
"@types/react": "16.9.25",
"@types/react-dom": "16.9.3",
"@types/react-helmet": "5.0.15",
"@types/react-redux": "7.1.7",
"@types/react-router-dom": "5.1.3",
"@types/react-test-renderer": "16.9.2",
"@types/rimraf": "3.0.0",
"@types/shelljs": "0.8.7",
"@types/styled-components": "5.0.1",
"@types/testing-library__jest-dom": "5.0.2",
"@types/webpack": "4.41.8",
"@types/webpack-env": "1.15.1",
"chalk": "3.0.0",
"coveralls": "3.0.11",
"cross-env": "7.0.2",
"devmoji": "2.1.9",
"eslint-config-overstock": "3.1.0",
"eslint-config-prettier": "6.10.1",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "3.0.0",
"eslint-plugin-redux-saga": "1.1.3",
"gh-pages": "2.2.0",
"git-branch-is": "3.1.0",
"husky": "4.2.5",
"jest-styled-components": "7.0.2",
"jest-watch-typeahead": "0.4.2",
"lint-staged": "10.0.8",
"node-plop": "0.25.0",
"plop": "2.6.0",
"prettier": "2.0.1",
"react-scripts": "4.0.0",
"react-test-renderer": "16.13.0",
"replace-in-file": "6.0.0",
"rimraf": "3.0.2",
"serve": "11.3.0",
"shelljs": "0.8.3",
"standard-version": "7.1.0",
"stylelint": "13.2.1",
"stylelint-config-recommended": "3.0.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-processor-styled-components": "1.10.0",
"ts-node": "8.8.2",
"typescript": "3.8.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}