forked from ag-grid/ag-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 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
{
"name": "ag-grid-community",
"version": "20.0.0",
"description": "Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components",
"main": "./main.js",
"typings": "./main.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/ag-grid/ag-grid.git"
},
"scripts": {
"initSubModules": "sh ./scripts/initialiseSubModules.sh",
"initLatest": "npm run initSubModules && sh ./scripts/switchToBranch.sh latest",
"initMarketing": "git checkout marketing && npm run updateCoreDependencies && npm run buildCore",
"initMaster": "npm run initSubModules && sh ./scripts/switchToBranch.sh master",
"updateExamples": "sh ./scripts/updateSubModules.sh",
"updateDependencies": "lerna bootstrap",
"updateCoreDependencies": "lerna bootstrap --scope ag-grid-community --scope ag-grid-enterprise --scope ag-grid-angular --scope ag-grid-react --scope ag-grid-vue --scope ag-grid-aurelia --scope ag-grid-docs",
"resetNonDocs": "git checkout packages/ag-grid-community && git checkout packages/ag-grid-community && git checkout packages/ag-grid-angular && git checkout packages/ag-grid-react && git checkout packages/ag-grid-aurelia && git checkout packages/ag-grid-vue ",
"build": "lerna run build",
"buildCore": "lerna run build --scope ag-grid-community --scope ag-grid-enterprise --scope ag-grid-angular --scope ag-grid-react --scope ag-grid-vue --scope ag-grid-aurelia",
"buildVanilla": "lerna run build --scope ag-grid-community --scope ag-grid-enterprise",
"buildAngular": "lerna run build --scope ag-grid-community --scope ag-grid-angular",
"buildVue": "lerna run build --scope ag-grid-community --scope ag-grid-vue",
"buildReact": "lerna run build --scope ag-grid-community --scope ag-grid-react",
"buildAurelia": "lerna run build --scope ag-grid-community --scope ag-grid-aurelia",
"docs": "cd packages/ag-grid-docs && gulp serve",
"updateAndRebuild": "npm run updateDependencies && npm run build",
"initIntelliJ": "cp .idea/workspace.xml.default .idea/workspace.xml",
"init": "npm run initLatest && npm run updateAndRebuild"
},
"devDependencies": {
"archiver": "^3.0.0",
"lerna": "^2.11.0",
"walk": "^2.3.14"
}
}