forked from ag-grid/ag-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 4.68 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
{
"name": "ag-grid-community",
"version": "23.0.2",
"description": "Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components",
"main": "./dist/ag-grid-community.cjs.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",
"initIntelliJ": "cp .idea/workspace.xml.default .idea/workspace.xml",
"init": "npm run initLatest && npm run updateAndRebuild",
"updateSubModules": "sh ./scripts/updateSubModules.sh",
"clean": "npx lerna run clean && npx lerna clean --yes",
"bootstrap": "npx lerna bootstrap --no-ci --ignore ag-grid-charts-example",
"build": "npx lerna run build --ignore ag-grid-polymer-example --ignore ag-grid-charts-example",
"package": "npx lerna run package --parallel --ignore ag-grid-polymer-example --ignore ag-grid-charts-example",
"test": "npx lerna run test --stream",
"cleanCoreDependencies": "npx lerna clean --yes --scope ag-grid-angular --scope ag-grid-react --scope ag-grid-vue --scope ag-grid-docs",
"bootstrapCoreDependencies": "npx lerna bootstrap --scope ag-grid-angular --scope ag-grid-react --scope ag-grid-vue --scope ag-grid-docs",
"buildCoreDependencies": "npx lerna run build --scope ag-grid-angular --scope ag-grid-react --scope ag-grid-vue --scope ag-grid-docs",
"cleanCommunityModules": "node -e 'require(\"./scripts/modules/lernaModules.js\").cleanCommunityModules()'",
"cleanEnterpriseModules": "node -e 'require(\"./scripts/modules/lernaModules.js\").cleanEnterpriseModules()'",
"cleanModules": "node -e 'require(\"./scripts/modules/lernaModules.js\").cleanModules()'",
"bootstrapCommunityModules": "node -e 'require(\"./scripts/modules/lernaModules.js\").bootstrapCommunityModules()'",
"bootstrapEnterpriseModules": "node -e 'require(\"./scripts/modules/lernaModules.js\").bootstrapEnterpriseModules()'",
"bootstrapModules": "node -e 'require(\"./scripts/modules/lernaModules.js\").bootstrapModules()'",
"buildCommunityModules": "node -e 'require(\"./scripts/modules/lernaModules.js\").buildCommunityModules()'",
"buildEnterpriseModules": "node -e 'require(\"./scripts/modules/lernaModules.js\").buildEnterpriseModules()'",
"buildModules": "node -e 'require(\"./scripts/modules/lernaModules.js\").buildModules()'",
"buildChartsModules": "node -e 'require(\"./scripts/modules/lernaModules.js\").buildChartsModules()'",
"testCommunityModules": "node -e 'require(\"./scripts/modules/lernaModules.js\").testCommunityModules()'",
"testEnterpriseModules": "node -e 'require(\"./scripts/modules/lernaModules.js\").testEnterpriseModules()'",
"testModules": "node -e 'require(\"./scripts/modules/lernaModules.js\").testModules()'",
"buildFrameworkExamples": "npx lerna run build --scope ag-grid-angular-cli-example --scope ag-grid-react-example --scope ag-grid-vue-example",
"cleanLegacy": "npx lerna clean --scope ag-grid-community --scope ag-grid-enterprise",
"bootstrapLegacy": "npx lerna bootstarp --scope ag-grid-community --scope ag-grid-enterprise",
"buildLegacy": "npx lerna run build --scope ag-grid-community --scope ag-grid-enterprise",
"buildAngular": "npx lerna run build --scope @ag-grid-community/core --scope ag-grid-angular",
"buildVue": "npx lerna run build --scope @ag-grid-community/core --scope ag-grid-vue",
"buildReact": "npx lerna run build --scope @ag-grid-community/core --scope ag-grid-react",
"docs-legacy": "cd grid-packages/ag-grid-docs && npx gulp serve-legacy",
"docs-source-mod-only": "cd grid-packages/ag-grid-docs && npx gulp serve-source-mod-only",
"docs": "cd grid-packages/ag-grid-docs && npm start",
"docs-running-check": "cd grid-packages/ag-grid-docs && npx gulp serve-check",
"updateAndRebuild": "npm i && npm run bootstrap && npm run build",
"cleanAndRebuild": "npm run clean && npm run updateAndRebuild"
},
"devDependencies": {
"archiver": "^3.0.0",
"chokidar": "^3.2.2",
"command-line-args": "^5.1.1",
"commander": "^3.0.2",
"execa": "^3.2.0",
"fs-extra": "^8.1.0",
"glob": "^7.1.6",
"inquirer": "^7.0.0",
"lerna": "^3.18.3",
"lighthouse": "^5.4.0",
"rollup": "^1.21.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"terser": "^4.3.9",
"typescript": "^3.7.2",
"walk": "^2.3.14"
},
"dependencies": {}
}