-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 2.94 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
{
"name": "@vectara/vectara-ui",
"version": "3.8.0",
"homepage": "https://vectara.github.io/vectara-ui/",
"description": "Vectara's design system, codified as a React and Sass component library",
"author": "Vectara",
"repository": {
"type": "git",
"url": "git+https://github.com/vectara/vectara-ui.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"Conversational",
"search",
"UI"
],
"bugs": {
"url": "https://github.com/vectara/vectara-ui/issues"
},
"browser": "lib/index.js",
"module": "lib/index.js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"start": "PORT=2000 react-scripts start",
"buildDocs": "BUILD_PATH='./docs/public' PUBLIC_URL='.' react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"build": "npx tsc --project tsconfig.lib.json && npm run copyStyleUtils && npm run copyComponentStyles && npm run compileCss",
"compileCss": "sass --no-source-map src/lib/styles/styles.scss lib/styles/index.css",
"copyStyleUtils": "copyfiles -u 2 src/lib/sassUtils/* lib",
"copyComponentStyles": "copyfiles -u 2 src/lib/components/index.scss lib && copyfiles -u 2 src/lib/components/**/*.scss lib && copyfiles -u 2 src/lib/components/**/**/*.scss lib",
"publish": "npm run build && npm publish --access public"
},
"dependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^12.1.5",
"@types/jest": "^27.5.2",
"@types/mdx": "^2.0.3",
"@types/node": "^16.18.34",
"@types/react": "^18.2.8",
"@types/react-dom": "^18.2.4",
"autoprefixer": "^10.4.7",
"classnames": "^2.3.2",
"copyfiles": "^2.4.1",
"lodash": "^4.17.21",
"markdown-to-jsx": "^7.3.2",
"postcss": "^8.4.14",
"prismjs": "^1.29.0",
"query-string": "^7.1.1",
"react-focus-on": "^3.8.1",
"react-icons": "^4.10.1",
"react-scripts": "^5.0.1",
"web-vitals": "^2.1.4"
},
"peerDependencies": {
"react": ">= 17.0.2",
"react-dom": ">= 17.0.2",
"react-router-dom": "^6.8.2"
},
"devDependencies": {
"@types/lodash": "^4.14.196",
"@types/prismjs": "^1.26.0",
"babel-plugin-named-exports-order": "^0.0.2",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.0",
"postcss-cli": "^9.1.0",
"prettier": "2.8.3",
"pretty-quick": "^3.1.3",
"prop-types": "^15.8.1",
"raw-loader": "^4.0.2",
"react": ">= 17.0.2",
"react-dom": ">= 17.0.2",
"react-router-dom": "^6.8.2",
"sass": "^1.58.0",
"webpack": "^5.85.0"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}