forked from algolia/autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.82 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
101
102
103
104
105
106
107
{
"name": "@algolia/autocomplete-monorepo",
"private": true,
"workspaces": [
"packages/*",
"examples/*",
"cypress/test-apps/*"
],
"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",
"cy:clean": "rimraf cypress/screenshots",
"cy:info": "cypress info",
"cy:record": "percy exec -- cypress run --spec 'cypress/integration/**/*' --headless --record",
"cy:run:chrome": "yarn run cy:run --browser chrome",
"cy:run:edge": "yarn run cy:run --browser edge",
"cy:run:firefox": "yarn run cy:run --browser firefox",
"cy:run": "start-server-and-test cy:start http://localhost:1234 cy:record",
"cy:start": "yarn workspace @algolia/test-apps-js start",
"cy:verify": "cypress verify",
"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": "jest",
"watch": "lerna run watch --parallel --no-private"
},
"devDependencies": {
"@babel/cli": "7.12.8",
"@babel/preset-env": "7.12.7",
"@babel/preset-react": "7.12.10",
"@babel/preset-typescript": "7.12.7",
"@csstools/postcss-sass": "4.0.0",
"@percy/cypress": "2.3.4",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "11.0.0",
"@rollup/plugin-replace": "2.3.4",
"@testing-library/dom": "7.28.1",
"@testing-library/jest-dom": "5.11.6",
"@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.19.0",
"@typescript-eslint/parser": "2.19.0",
"algoliasearch": "4.9.1",
"autoprefixer": "10.0.4",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.2",
"babel-plugin-inline-json": "1.2.2",
"babel-plugin-inline-replace-variables": "1.3.1",
"babel-plugin-module-resolver": "4.0.0",
"bundlesize": "0.18.0",
"concurrently": "5.3.0",
"cssnano": "4.1.10",
"cypress": "6.3.0",
"dotenv": "8.2.0",
"eslint": "6.8.0",
"eslint-config-algolia": "15.0.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-cypress": "2.11.2",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.3",
"eslint-plugin-prettier": "3.2.0",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.2.0",
"jest": "26.6.3",
"jest-diff": "26.6.2",
"jest-watch-typeahead": "0.6.1",
"lerna": "3.22.1",
"postcss": "8.1.8",
"postcss-color-rgb": "2.0.0",
"postcss-comment": "2.0.0",
"postcss-preset-env": "6.7.0",
"prettier": "2.2.1",
"rollup": "2.34.1",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-filesize": "9.0.2",
"rollup-plugin-license": "2.2.0",
"rollup-plugin-terser": "7.0.2",
"shipjs": "0.23.0",
"start-server-and-test": "1.11.7",
"stylelint": "13.9.0",
"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.1.2",
"typescript": "4.2.4",
"watch": "1.0.2"
}
}