-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 4.73 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 4.73 KB
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
{
"author": {
"email": "chocholatom1997@gmail.com",
"name": "Tomáš Chochola",
"url": "https://github.com/tomchochola"
},
"bugs": {
"email": "chocholatom1997@gmail.com",
"url": "https://github.com/premierstacks/browser-webpack-typescript-react-app-template/issues"
},
"contributors": [
{
"email": "chocholatom1997@gmail.com",
"name": "Tomáš Chochola",
"url": "https://github.com/tomchochola"
}
],
"dependencies": {
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/api-logs": "^0.203.0",
"@opentelemetry/auto-instrumentations-web": "^0.49.0",
"@opentelemetry/context-zone": "^2.0.1",
"@opentelemetry/core": "^2.0.1",
"@opentelemetry/exporter-logs-otlp-http": "^0.203.0",
"@opentelemetry/exporter-metrics-otlp-http": "^0.203.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.203.0",
"@opentelemetry/instrumentation": "^0.203.0",
"@opentelemetry/opentelemetry-browser-detector": "^0.203.0",
"@opentelemetry/resources": "^2.0.1",
"@opentelemetry/sdk-logs": "^0.203.0",
"@opentelemetry/sdk-metrics": "^2.0.1",
"@opentelemetry/sdk-trace-base": "^2.0.1",
"@opentelemetry/sdk-trace-web": "^2.0.1",
"@opentelemetry/semantic-conventions": "^1.36.0",
"react": "^19.1.1",
"react-aria": "^3.42.0",
"react-dom": "^19.1.1",
"react-router-dom": "^7.8.1",
"react-stately": "^3.40.0",
"sanitize.css": "^13.0.0",
"web-vitals": "^5.1.0"
},
"description": "premierstacks browser webpack typescript react app template",
"devDependencies": {
"@axe-core/playwright": "^4.10.2",
"@playwright/test": "^1.55.0",
"@premierstacks/babel-stack": "github:premierstacks/babel-stack#main",
"@premierstacks/eslint-stack": "github:premierstacks/eslint-stack#main",
"@premierstacks/postcss-stack": "github:premierstacks/postcss-stack#main",
"@premierstacks/prettier-stack": "github:premierstacks/prettier-stack#main",
"@premierstacks/stylelint-stack": "github:premierstacks/stylelint-stack#main",
"@premierstacks/typescript-stack": "github:premierstacks/typescript-stack#main",
"@premierstacks/webpack-stack": "github:premierstacks/webpack-stack#main",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"csstype": "^3.1.3"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tomchochola"
},
"homepage": "https://github.com/premierstacks/browser-webpack-typescript-react-app-template",
"keywords": [
"tomchochola",
"tomaschochola",
"Tomas Chochola",
"Tomáš Chochola",
"premierstacks",
"browser-webpack-typescript-react-app-template"
],
"license": "CC-BY-ND-4.0",
"name": "@premierstacks/browser-webpack-typescript-react-app-template",
"repository": "github:premierstacks/browser-webpack-typescript-react-app-template",
"scripts": {
"build": "webpack-cli build --mode=${NODE_ENV} --node-env=${NODE_ENV} --env APP_ENV=${APP_ENV}",
"fix:eslint": "eslint --fix .",
"fix:prettier": "prettier -w .",
"fix:stylelint": "stylelint --fix ./**/*.{sass,scss,css}",
"lint:eslint": "eslint .",
"lint:prettier": "prettier -c .",
"lint:stylelint": "stylelint ./**/*.{sass,scss,css}",
"npm:audit": "\"$npm_node_execpath\" \"$npm_execpath\" audit --audit-level info --include prod --include dev --include peer --include optional",
"npm:install": "\"$npm_node_execpath\" \"$npm_execpath\" install --install-links --include prod --include dev --include peer --include optional --ignore-scripts",
"npm:update": "\"$npm_node_execpath\" \"$npm_execpath\" update --install-links --include prod --include dev --include peer --include optional --ignore-scripts",
"playwright:failed": "playwright test --last-failed",
"playwright:headed": "playwright test --headed",
"playwright:install": "playwright install",
"playwright:start": "webpack-cli serve --mode=development --node-env=development --env APP_ENV=playwright",
"playwright:test": "playwright test",
"playwright:ui": "playwright test --ui",
"stan:typescript": "tsc --noEmit",
"start": "webpack-cli serve --mode=${NODE_ENV} --node-env=${NODE_ENV} --env APP_ENV=${APP_ENV}",
"webpack:analyze:development": "webpack-cli build --mode=development --node-env=development --analyze",
"webpack:analyze:production": "webpack-cli build --mode=production --node-env=production --analyze",
"webpack:build:development": "webpack-cli build --mode=development --node-env=development",
"webpack:build:production": "webpack-cli build --mode=production --node-env=production",
"webpack:serve:development": "webpack-cli serve --mode=development --node-env=development",
"webpack:serve:production": "webpack-cli serve --mode=production --node-env=production"
},
"type": "module"
}