forked from algolia/autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.33 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
{
"name": "@algolia/autocomplete-monorepo",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build:clean": "lerna run build:clean --no-private",
"build:css": "lerna run build:css --no-private",
"build:esm": "lerna run build:esm --no-private",
"build:types": "lerna run build:types --no-private",
"build:umd": "lerna run build:umd --no-private",
"build": "lerna run build --no-private",
"format": "prettier --write .",
"lint:css": "stylelint packages/*/src/**/*.scss",
"lint": "eslint --ext .js,.ts,.tsx .",
"playground:start": "yarn workspace @algolia/autocomplete-example-playground start",
"prepare": "lerna run prepare --no-private",
"release": "shipjs prepare",
"start": "yarn run watch",
"test:size": "bundlesize",
"test:types": "tsc --noEmit",
"test:versions": "./test/versions/index.js",
"test": "jest",
"watch": "lerna run watch --parallel --no-private"
},
"devDependencies": {
"@babel/cli": "7.21.0",
"@babel/preset-env": "7.21.4",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.21.4",
"@csstools/postcss-sass": "5.0.1",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "11.2.1",
"@rollup/plugin-replace": "2.4.2",
"@testing-library/dom": "7.28.1",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/preact": "2.0.1",
"@testing-library/user-event": "12.5.0",
"@types/jest": "^26.0.16",
"@types/jest-diff": "^24.3.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"algoliasearch": "4.16.0",
"autoprefixer": "10.4.14",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.3",
"babel-plugin-inline-json": "1.2.2",
"babel-plugin-inline-replace-variables": "1.3.1",
"babel-plugin-module-resolver": "4.1.0",
"bundlesize": "0.18.1",
"concurrently": "5.3.0",
"cssnano": "4.1.11",
"dotenv": "8.2.0",
"eslint": "6.8.0",
"eslint-config-algolia": "15.0.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.7.0",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "26.6.3",
"jest-diff": "26.6.2",
"jest-watch-typeahead": "0.6.5",
"lerna": "3.22.1",
"postcss": "8.4.21",
"postcss-color-rgb": "2.0.0",
"postcss-preset-env": "8.3.0",
"postcss-scss": "4.0.6",
"prettier": "2.8.7",
"rollup": "2.79.1",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-filesize": "9.1.2",
"rollup-plugin-license": "2.9.1",
"rollup-plugin-terser": "7.0.2",
"shipjs": "0.26.1",
"search-insights": "2.13.0",
"start-server-and-test": "1.15.2",
"stylelint": "13.13.1",
"stylelint-a11y": "1.2.3",
"stylelint-config-prettier": "8.0.2",
"stylelint-config-sass-guidelines": "7.1.0",
"stylelint-config-standard": "20.0.0",
"stylelint-no-unsupported-browser-features": "4.1.4",
"stylelint-order": "4.1.0",
"stylelint-prettier": "1.2.0",
"typescript": "4.5.5",
"watch": "1.0.2"
},
"resolutions": {
"bundlesize/brotli-size": "4.0.0"
}
}