forked from vaseker/ag-grid-ng2-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (71 loc) · 2.36 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-ng2-example",
"version": "7.0.1",
"description": "ag-Grid Angular 2 Example",
"scripts": {
"tsc": "tsc -p tsconfig.json",
"tsc:w": "tsc -p tsconfig.json -w",
"lite": "lite-server",
"clean:jit": "rimraf app/*.js*",
"start": "npm run tsc && concurrently \"npm run tsc:w\" \"npm run lite\" ",
"clean:aot": "rimraf aot/aot/* && rimraf aot/app/* && rimraf aot/dist/* && rimraf aot/node_modules/* && rimraf app/*.js* aot/e2e",
"build:aot": "ngc -p tsconfig-aot.json && gulp aot-bundle",
"lite:aot": "lite-server -c aot/bs-config.json",
"clean-build:aot": "npm run clean:aot && npm run build:aot",
"pree2e": "webdriver-manager update",
"test": "tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"",
"e2e": "tsc && concurrently \"http-server -s\" \"protractor protractor.config.js\" --kill-others --success first"
},
"repository": {
"type": "git",
"url": "https://github.com/ceolter/ag-grid-ng2-example.git"
},
"author": "Niall Crosby <niall.crosby@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ceolter/ag-grid-ng2-example/issues"
},
"homepage": "http://www.ag-grid.com/",
"dependencies": {
"ag-grid": "7.0.x",
"ag-grid-enterprise": "7.0.x",
"ag-grid-ng2": "7.0.x",
"@angular/common": "2.1.x",
"@angular/compiler": "2.1.x",
"@angular/compiler-cli": "2.1.x",
"@angular/core": "2.1.x",
"@angular/http": "2.1.x",
"@angular/forms": "2.1.x",
"@angular/platform-browser": "2.1.x",
"@angular/platform-browser-dynamic": "2.1.x",
"@angular/platform-server": "2.1.x",
"@angular/router": "3.1.x",
"rxjs": "5.0.0-beta.12",
"zone.js": "^0.6.x",
"core-js": "^2.4.1",
"systemjs": "0.19.27",
"bootstrap": "^3.3.6",
"jquery": "^3.1.1"
},
"devDependencies": {
"@types/node": "^6.0.45",
"concurrently": "^2.2.0",
"gulp": "^3.9.1",
"lite-server": "^2.2.2",
"systemjs-builder": "^0.15.33",
"typescript": "2.0.3",
"copyfiles": "^1.0.0",
"ncp": "^2.0.0",
"rimraf": "2.5.x",
"http-server": "^0.9.0",
"canonical-path": "0.0.2",
"jasmine-core": "~2.4.1",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-jasmine": "^1.0.2",
"karma-jasmine-html-reporter": "^0.2.2",
"protractor": "4.0.13",
"webdriver-manager": "10.2.5"
}
}