-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 4.38 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 4.38 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
{
"name": "@premierstacks/browser-webpack-typescript-react-library-template",
"description": "premierstacks browser webpack typescript react library template",
"keywords": [
"tomchochola",
"tomaschochola",
"premierstacks",
"browser-webpack-typescript-react-library-template"
],
"homepage": "https://github.com/premierstacks/browser-webpack-typescript-react-library-template",
"bugs": {
"email": "chocholatom1997@gmail.com",
"url": "https://github.com/premierstacks/browser-webpack-typescript-react-library-template/issues"
},
"license": "CC-BY-ND-4.0",
"author": {
"email": "chocholatom1997@gmail.com",
"name": "Tomáš Chochola",
"url": "https://github.com/tomchochola"
},
"contributors": [
{
"email": "chocholatom1997@gmail.com",
"name": "Tomáš Chochola",
"url": "https://github.com/tomchochola"
}
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tomchochola"
},
"repository": "github:premierstacks/browser-webpack-typescript-react-library-template",
"dependencies": {
"@stylexjs/stylex": "latest",
"react": "^19.1.0",
"react-aria": "^3.41.1",
"react-aria-components": "^1.10.1",
"react-dom": "^19.1.0",
"react-router": "^7.7.0",
"sanitize.css": "^13.0.0"
},
"devDependencies": {
"@playwright/test": "^1.54.1",
"@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.8",
"@types/react-dom": "^19.1.6",
"csstype": "^3.1.3"
},
"type": "module",
"sideEffects": [
"*.sass",
"*.scss",
"*.css",
"./src/css/**/*",
"./storybook/**/*"
],
"main": "./src/index.ts",
"scripts": {
"check": "npm run stan && npm run lint && npm run test && npm run security",
"clean": "npm run clean:npm && npm run clean:dist",
"clean:dist": "git clean -xfd ./dist",
"clean:npm": "git clean -xfd ./node_modules ./package-lock.json",
"commit": "npm run fix && npm run check && npm run local",
"fix": "npm run stan && npm run fix:eslint && npm run fix:stylelint && npm run fix:prettier",
"fix:eslint": "eslint --fix .",
"fix:prettier": "prettier -w .",
"fix:stylelint": "stylelint --fix ./**/*.{sass,scss,css}",
"lint": "npm run stan && npm run lint:eslint && npm run lint:stylelint && npm run lint:prettier",
"lint:eslint": "eslint .",
"lint:prettier": "prettier -c .",
"lint:stylelint": "stylelint ./**/*.{sass,scss,css}",
"local": "npm run npm:install && npm run webpack:build:development -- --env APP_ENV=local",
"npm:audit": "npm audit --audit-level info --include prod --include dev --include peer --include optional",
"npm:install": "npm install --install-links --include prod --include dev --include peer --include optional --ignore-scripts",
"npm:update": "npm update --install-links --include prod --include dev --include peer --include optional --ignore-scripts",
"playwright:install": "playwright install",
"playwright:start": "npm run webpack:serve:production -- --env APP_ENV=playwright",
"playwright:test": "playwright test",
"security": "npm run npm:audit",
"stan": "npm run stan:typescript",
"stan:typescript": "tsc --noEmit",
"start": "npm run webpack:serve:development -- --open --env APP_ENV=local",
"test": "npm run playwright:install && npm run playwright:test",
"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"
}
}