-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
55 lines (55 loc) · 1.44 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
{
"name": "djangoql-completion",
"description": "DjangoQL completion widget",
"version": "0.5.0",
"license": "MIT",
"homepage": "https://github.com/ivelum/djangoql-completion",
"author": "Denis Stebunov (https://github.com/stebunovd)",
"repository": {
"type": "git",
"url": "https://github.com/ivelum/djangoql-completion.git"
},
"main": "src/index.js",
"scripts": {
"build": "webpack --mode production",
"lint": "node_modules/.bin/eslint --ext .js .",
"start": "webpack --mode development --watch",
"tests": "jest ./tests"
},
"files": [
"dist",
"src"
],
"dependencies": {
"lex": "1.7.9",
"lodash": "4.17.21"
},
"devDependencies": {
"@babel/core": "7.14.3",
"@babel/eslint-parser": "7.14.5",
"@babel/eslint-plugin": "7.14.5",
"@babel/preset-env": "7.14.2",
"babel-jest": "27.0.2",
"babel-loader": "8.2.2",
"eslint": "7.28.0",
"eslint-config-airbnb": "18.2.1",
"eslint-import-resolver-webpack": "0.13.1",
"eslint-loader": "4.0.2",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jest": "24.3.6",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.24.0",
"jest": "27.0.4",
"webpack": "5.37.0",
"webpack-cli": "4.7.0"
},
"jest": {
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"testEnvironment": "jsdom",
"transform": {
"\\.(js|jsx)$": "<rootDir>/node_modules/babel-jest"
}
}
}