-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
118 lines (118 loc) · 3.92 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
{
"author": "Brian Jacobel <[email protected]> (https://bjacobel.com)",
"bin": "install/lib/index.js",
"bugs": "https://github.com/bjacobel/rak/issues",
"dependencies": {
"@linaria/core": "^6.2.0",
"@linaria/react": "^6.2.1",
"@micro-sentry/breadcrumbs-plugin": "^1.0.2",
"@micro-sentry/browser": "^7.0.5",
"@tanstack/react-query": "^5.0.0",
"core-js": "^3.37.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-helmet": "^6.1.0",
"replacestream": "^4.0.3",
"workbox-window": "^7.0.0",
"wouter": "^3.1.0"
},
"description": "Opinionated skeleton to quickly set up a new React app.",
"devDependencies": {
"@aws-sdk/client-cloudfront": "^3.577.0",
"@aws-sdk/client-s3": "^3.575.0",
"@babel/core": "^7.24.5",
"@babel/plugin-transform-react-jsx-source": "^7.24.1",
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.5",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@bjacobel/cloudformer-node": "^0.0.23",
"@bjacobel/vhtml-loader": "^2.3.0",
"@linaria/stylelint-config-standard-linaria": "^6.2.0",
"@mapbox/cloudfriend": "^8.1.0",
"@schemastore/package": "^0.0.10",
"@testing-library/dom": "^10.0.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^15.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/google.analytics": "^0.0.46",
"@types/jest": "^29.1.2",
"@types/node": "^20.12.5",
"@types/react-helmet": "^6.1.11",
"@types/replacestream": "^4",
"@types/webpack-env": "^1.18.0",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"@wyw-in-js/babel-preset": "^0.5.3",
"@wyw-in-js/webpack-loader": "^0.5.3",
"autoprefixer": "^10.4.19",
"aws-sdk": "^2.1594.0",
"babel-jest": "^29.0.0",
"babel-loader": "^9.0.0",
"check-peer-dependencies": "^4.2.0",
"css-loader": "^7.0.0",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^8.0.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.2.0",
"jest-environment-jsdom": "^29.1.2",
"mini-css-extract-plugin": "^2.6.1",
"postcss": "^8.4.6",
"postcss-calc": "^10.0.0",
"postcss-font-magician": "^4.0.0",
"postcss-loader": "^8.0.0",
"postcss-preset-env": "^10.0.0",
"prettier": "^3.2.5",
"style-loader": "^4.0.0",
"stylelint": "^14.14.0",
"terser-webpack-plugin": "^5.2.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.0",
"webpack": "^5.82.0",
"webpack-cli": "^5.1.0",
"webpack-dev-server": "^5.0.0",
"workbox-webpack-plugin": "^7.0.0"
},
"engines": {
"node": "^20.0.0"
},
"keywords": [
"boilerplate",
"react",
"scaffold",
"skeleton",
"starter",
"webpack"
],
"license": "MIT",
"name": "rak",
"repository": {
"url": "[email protected]:bjacobel/rak.git",
"type": "git"
},
"scripts": {
"deploy-utils": "ts-node deploy/utils",
"stylelint": "stylelint --config app/stylelint.config.js 'app/src/**/*.{js,ts,tsx}'",
"prettier": "prettier -l --ignore-path .eslintignore . ",
"style": "yarn run --silent prettier && eslint . && yarn run --silent stylelint",
"validate": "tsc",
"lint": "yarn run --silent style && yarn run --silent validate",
"build": "webpack -c app/webpack.config.ts",
"start": "webpack-dev-server -c app/webpack.config.ts",
"jest": "jest -c app/jest.config.ts",
"test": "yarn run --silent jest --coverage && ./install-test.sh",
"prepublish": "webpack -c install/src/webpack.config.ts"
},
"version": "0.5.1",
"browserslist": [
"> 1% in US"
],
"packageManager": "[email protected]"
}