forked from DevExpress/devextreme-reactive
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.94 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
{
"private": true,
"name": "devextreme-reactive",
"author": {
"name": "Developer Express Inc.",
"url": "https://www.devexpress.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DevExpress/devextreme-reactive.git"
},
"license": "SEE LICENSE IN README.md",
"devDependencies": {
"check-node-version": "^3.2.0",
"concurrently": "^3.5.1",
"conventional-changelog-cli": "^1.3.22",
"conventional-recommended-bump": "^2.0.9",
"fs-extra": "^6.0.0",
"gulp": "^3.9.1",
"gulp-clean": "^0.4.0",
"gulp-intercept": "^0.1.0",
"gulp-rename": "^1.2.2",
"inquirer": "^5.2.0",
"lerna": "2.11.0",
"run-sequence": "^2.2.1",
"semver": "^5.5.0"
},
"scripts": {
"postinstall": "check-node-version --quiet --node \">=6.11.1\" --npm \">=5.3.0\" --yarn \">=1.0.0\"",
"build": "yarn run build:ts && lerna run build",
"build:ts": "node ./scripts/ts-generator.js",
"build:ts:watch": "nodemon --exec \"yarn build:ts\" --watch \"packages/*/docs/reference/*.md\" --watch \"scripts/ts-generator.js\" --ext md,js",
"build:watch": "concurrently \"yarn build:ts:watch\" \"lerna run --parallel build:watch\"",
"build:site": "yarn run build:site:demos && yarn run build:site:docs",
"build:site:demos": "yarn run build:ts && lerna run build --ignore @devexpress/dx-react-demos && lerna run build:prod --scope @devexpress/dx-react-demos",
"build:site:docs": "gulp site",
"build:site:watch": "npx nodemon --exec \"yarn run build:site:docs\" --watch \"packages/dx-react-demos/dist/\" --watch \"packages/dx-vue-demos/dist/\" --watch \"packages/*/docs/\" --watch \"packages/*/demos/\" --watch \"gulpfile.js\" --ext md,js",
"lint": "lerna run lint",
"lint:ci": "lerna run lint:ci",
"test": "lerna run test",
"publish:npm": "yarn && node ./scripts/publish-npm.js",
"publish:site": "yarn && node ./scripts/publish-site.js"
},
"workspaces": [
"packages/*"
]
}