-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.63 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.63 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
{
"name": "@nosto/search-templates-starter",
"version": "0.1.0",
"license": "ISC",
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"directories": {
"test": "test"
},
"keywords": [],
"author": "Nosto",
"scripts": {
"dev": "vite --mode injected",
"dev:native": "vite --mode native",
"dev:mocked": "vite --mode mocked",
"build": "npm run typecheck && vite build --mode injected",
"build:native": "npm run typecheck && vite build --mode native",
"build:demo": "npm run typecheck && vite build --mode demo",
"test": "vitest --run",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"typecheck": "tsc --noEmit",
"lint": "eslint",
"lint-fix": "eslint --fix",
"style-lint": "stylelint 'src/**/*.css'",
"style-lint-fix": "stylelint 'src/**/*.css' --fix",
"preview": "vite preview",
"prepare": "husky",
"storybook": "storybook dev -p 6060",
"storybook:build": "storybook build"
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@nosto/nosto-cli": "^1.4.1",
"@nosto/nosto-js": "^2.11.3",
"@nosto/search-js": "^3.26.2",
"@nosto/web-components": "^11.6.0",
"@playwright/test": "^1.60.0",
"@preact/preset-vite": "^2.10.5",
"@storybook/addon-docs": "^10.4.1",
"@storybook/preact-vite": "^10.4.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/preact": "^3.2.3",
"@types/eslint-config-prettier": "^6.11.3",
"@types/node": "^25.9.1",
"copyfiles": "^2.4.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-storybook": "10.4.1",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"msw": "^2.14.6",
"preact": "^10.29.2",
"prettier": "^3.8.3",
"rollup-plugin-visualizer": "^7.0.1",
"storybook": "^10.3.1",
"stylelint": "^17.12.0",
"stylelint-config-css-modules": "^4.6.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-value-no-unknown-custom-properties": "^6.1.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.0",
"typescript-plugin-css-modules": "^5.2.0",
"vite": "^8.0.16",
"vitest": "^4.1.7"
},
"overrides": {
"minimatch": "^10.2.1",
"immutable": ">=5.1.5",
"flatted": ">=3.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nosto/search-templates-starter.git"
}
}