-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
62 lines (62 loc) · 2.2 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
{
"author": "Developer Express Inc.",
"name": "root",
"private": true,
"version": "0.0.0",
"description": "DevExtreme React UI and Visualization Components",
"repository": {
"type": "git",
"url": "https://github.com/DevExpress/devextreme-react.git"
},
"devDependencies": {
"@types/babel__traverse": "ts4.2",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^4.33.0",
"cpy-cli": "^3.1.1",
"del-cli": "^3.0.1",
"devextreme-internal-tools": "10.0.0-beta.19",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-devextreme": "^0.1.40",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-jest-formatting": "^1.2.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-qunit": "^4.3.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-spellcheck": "0.0.14",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"istanbul": "^0.4.5",
"istanbul-cobertura-badger": "^1.3.1",
"jest": "^25.0.0",
"ts-jest": "^25.5.1",
"typescript": "~4.2"
},
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "npm run clean:packages && npm run clean:root",
"clean:packages": "npm run clean --workspaces --if-present",
"clean:root": "del-cli node_modules",
"start": "npm run update-integration-meta && npm run build && npm run start --workspace=devextreme-react-sandbox",
"build": "npm run update-integration-meta && npm run build --workspaces --if-present && npm run lint",
"lint": "gulp lint",
"test": "npm run update-integration-meta && npm run build && jest --coverage",
"test-watch": "jest --watch",
"pack": "npm run update-integration-meta && npm run pack --workspaces --if-present",
"update-integration-meta": "dx-tools integration-data-generator --artifacts ../devextreme/artifacts/internal-tools --output-path ./packages/devextreme-react/metadata/integration-data.json --version 23_2"
},
"keywords": [
"react",
"devextreme",
"devexpress"
],
"license": "MIT",
"dependencies": {
"devextreme": "^23.1.3"
}
}