-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
90 lines (90 loc) · 3.14 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
{
"name": "wagtail-autocomplete",
"version": "0.6.0",
"description": "An Autocomplete edit handler for Pages, Snippets, and more.",
"repository": "https://littleweaver/wagtail-autocomplete",
"license": "BSD-3-Clause",
"main": "client/src/index.js",
"jest": {
"testEnvironment": "jsdom",
"moduleNameMapper": {
"\\.scss$": "<rootDir>/client/src/__mocks__/styleMock.js"
},
"setupFiles": [
"<rootDir>/client/src/setupTests.js"
]
},
"scripts": {
"build": "webpack --mode production",
"start": "webpack watch --devtool eval-source-map --mode development",
"lint:js": "eslint ./client",
"lint:css": "stylelint **/*.scss",
"test": "jest client"
},
"stylelint": {
"extends": "@wagtail/stylelint-config-wagtail"
},
"author": "Emily Horsman <[email protected]>",
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.17.10",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.0.0",
"@wagtail/eslint-config-wagtail": "^0.4.0",
"@wagtail/stylelint-config-wagtail": "^0.7.0",
"autoprefixer": "^10.4.7",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^28.1.0",
"babel-loader": "^8.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"css-loader": "^6.7.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^8.15.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"mini-css-extract-plugin": "^1.6.2",
"postcss": "^8.4.13",
"postcss-loader": "^7.2.4",
"react-test-renderer": "^16.14.0",
"sass": "^1.51.0",
"sass-loader": "^10.2.1",
"style-loader": "^3.3.1",
"stylelint": "^15.6.0",
"webpack": "^5.76.0",
"webpack-bundle-tracker": "^1.5.0",
"webpack-cli": "^4.9.2",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"classlist-polyfill": "^1.2.0",
"classnames": "^2.2.5",
"element-dataset": "^2.2.6",
"js-cookie": "^3.0.5",
"prop-types": "^15.5.10",
"react": "^16.14.0",
"react-dom": "^16.14.0"
}
}