generated from metachris/typescript-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
186 lines (186 loc) · 6.27 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
178
179
180
181
182
183
184
185
186
{
"name": "i-ching-ts",
"description": "The Oracle of Changes, incarnated in the modern web.",
"version": "1.2.0",
"repository": {
"type": "git",
"url": "https://github.com/mikhael28/i-ching.git"
},
"license": "MIT",
"engines": {
"npm": ">=6.12.0",
"node": ">=12.13.0"
},
"bugs": {
"url": "https://github.com/mikhael28/i-ching/issues"
},
"main": "template.json",
"files": [
"template",
"template.json"
],
"keywords": [
"react",
"create-react-app",
"template",
"typescript",
"redux",
"reduxjs",
"react-redux",
"react-boilerplate",
"styled-components"
],
"scripts": {
"// ---DEFAULT CRA---": "",
"build:css": "node-sass src/ -o src/ ",
"watch:css": "npm run build:css && node-sass src/ -o src/ -w -r",
"start:js": "react-scripts start",
"start": "npm-run-all -p watch:css start:js",
"build:js": "react-scripts build",
"build": "npm-run-all build:*",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"// ---TEMPLATE---": "Scripts will be also in the template",
"start:prod": "yarn run build && serve -s build",
"test:generators": "ts-node --project=./internals/ts-node.tsconfig.json ./internals/testing/generators/test-generators.ts",
"checkTs": "tsc --noEmit",
"eslint": "eslint --ext js,ts,tsx",
"lint": "yarn run eslint src",
"lint:fix": "yarn 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",
"extract-messages": "i18next-scanner --config=internals/extractMessages/i18next-scanner.config.js",
"// ---TESTING TEMPLATE---": "",
"test:internals": "yarn run test:extract-messages && yarn run test:generators",
"test:extract-messages": "jest --config=internals/extractMessages/jest.config.js",
"verify-startingTemplate-changes": "ts-node --project=./internals/ts-node.tsconfig.json ./internals/scripts/verify-startingTemplate-changes.ts",
"test:coverage": "yarn run test --watchAll=false --coverage",
"test:cra": "yarn run create:cra-app && cd generated-cra-app && yarn run test:generators && yarn run lint && yarn run checkTs && yarn run cleanAndSetup && yarn run lint && yarn 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' yarn 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": "yarn run create:npm-package && yarn publish .cra-template-rb --non-interactive"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"yarn run eslint --fix"
],
"*.{md,json}": [
"prettier --write"
]
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!src/**/*/*.d.ts",
"!src/**/*/Loadable.{js,jsx,ts,tsx}",
"!src/**/*/messages.ts",
"!src/reportWebVitals.ts",
"!src/**/*/types.ts",
"!src/index.tsx"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
}
},
"dependencies": {
"@reduxjs/toolkit": "1.4.0",
"@types/node-sass": "4.11.1",
"fontfaceobserver": "2.1.0",
"i18next": "19.7.0",
"i18next-browser-languagedetector": "6.0.1",
"node-sass": "9.0.0",
"npm-run-all": "4.1.5",
"react": "16.13.1",
"react-app-polyfill": "1.0.6",
"react-countdown-circle-timer": "2.5.2",
"react-dom": "16.13.1",
"react-helmet-async": "1.3.0",
"react-i18next": "11.7.2",
"react-icons": "4.2.0",
"react-redux": "7.2.1",
"react-router-dom": "5.2.0",
"redux-injectors": "1.3.0",
"redux-saga": "1.1.3",
"require-text": "0.0.1",
"sanitize.css": "12.0.1",
"simplex-noise": "2.4.0",
"styled-components": "5.1.0",
"web-vitals": "0.2.4"
},
"devDependencies": {
"@commitlint/cli": "9.1.2",
"@commitlint/config-conventional": "9.1.2",
"@testing-library/jest-dom": "5.11.9",
"@testing-library/react": "11.2.3",
"@types/fontfaceobserver": "0.0.6",
"@types/jest": "25.1.4",
"@types/node": "14.6.4",
"@types/react": "17.0.0",
"@types/react-dom": "16.9.8",
"@types/react-helmet-async": "1.0.3",
"@types/react-redux": "7.1.9",
"@types/react-router-dom": "5.1.5",
"@types/react-test-renderer": "16.9.3",
"@types/rimraf": "3.0.0",
"@types/shelljs": "0.8.8",
"@types/styled-components": "5.1.3",
"@types/testing-library__jest-dom": "5.9.2",
"@types/webpack": "4.41.22",
"@types/webpack-env": "1.15.2",
"chalk": "4.1.0",
"cross-env": "7.0.2",
"devmoji": "2.1.9",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react-hooks": "4.1.0",
"gh-pages": "3.1.0",
"git-branch-is": "4.0.0",
"husky": "4.2.5",
"i18next-scanner": "2.11.0",
"inquirer": "7.3.3",
"inquirer-directory": "2.2.0",
"jest-styled-components": "7.0.3",
"lint-staged": "10.3.0",
"node-plop": "0.26.2",
"plop": "2.7.4",
"prettier": "2.1.1",
"react-scripts": "5.0.1",
"react-test-renderer": "16.13.1",
"replace-in-file": "6.1.0",
"rimraf": "3.0.2",
"serve": "11.3.2",
"shelljs": "0.8.4",
"standard-version": "9.0.0",
"stylelint": "13.7.0",
"stylelint-config-recommended": "3.0.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-processor-styled-components": "1.10.0",
"ts-jest": "26.3.0",
"ts-node": "9.0.0",
"typescript": "4.1.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}