-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 1.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
{
"name": "@nosto/nosto-react",
"description": "Component library to simply implementing Nosto on React.",
"version": "2.2.2",
"author": "Mridang Agarwalla, Dominik Gilg",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/Nosto/nosto-react.git"
},
"keywords": [
"nosto",
"personalisation"
],
"scripts": {
"dev": "vite",
"build": "tsc && npm run lint && vite build && npm run typedoc",
"preview": "vite preview",
"prepare": "vite build",
"typecheck": "tsc",
"lint": "eslint 'src/**/*.{ts,tsx}' --cache",
"clean": "rimraf dist",
"prettier": "prettier '{src,spec}/**' --list-different",
"prettier:fix": "prettier '{src,spec}/**' --write",
"test": "vitest run --silent",
"test-loud": "vitest run",
"typedoc": "typedoc src/index.ts"
},
"files": [
"dist",
"src"
],
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"@nosto/nosto-js": "*"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/user-event": "^4.1.1",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^9.13.0",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-react": "^7.33.2",
"prettier": "^3.3.3",
"react-router": "^6.25.1",
"react-router-dom": "^6.25.1",
"rimraf": "^6.0.1",
"typedoc": "^0.26.7",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0",
"vite": "^5.2.10",
"vite-plugin-dts": "^4.2.2",
"vitest": "^2.0.5"
},
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"bugs": {
"url": "https://github.com/Nosto/nosto-react/issues"
}
}