This repository has been archived by the owner on Feb 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
61 lines (61 loc) · 1.95 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
{
"name": "angular2-slides",
"version": "1.0.0",
"main": "dist/index.js",
"repository": "[email protected]:objectpartners/angular2-slides.git",
"author": "Jon DeJong",
"contributors": [
"Michael Cacek <[email protected]",
"Dustin Schau <[email protected]>"
],
"license": "MIT",
"scripts": {
"prebuild": "del-cli \"dist/**/*\"",
"build": "webpack --env.production",
"precommit": "lint-staged",
"predeploy": "npm run build",
"format": "prettier \"src/**/*.ts\" --write --single-quote --parser typescript",
"deploy": "ghpages --path dist",
"start": "webpack-dev-server --env.development --inline --progress --port 9999 --content-base ./src/public --content-base ./",
"test": "echo \"We should probably write some tests huh\""
},
"devDependencies": {
"@angular/cli": "~1.0.0",
"@types/jasmine": "^2.5.53",
"@types/node": "~7.0.12",
"@types/webpack-env": "~1.13.0",
"copy-webpack-plugin": "~4.0.1",
"del-cli": "~0.2.1",
"ghpages": "~0.0.10",
"husky": "^0.14.3",
"lint-staged": "^4.0.3",
"object-partners-presentation": "github:objectpartners/object-partners-presentation-config#1.0.0",
"prettier": "^1.5.3",
"webpack": "~2.3.3",
"webpack-copy-plugin": "~0.0.4",
"webpack-dev-server": "~2.4.2"
},
"dependencies": {
"@angular/common": "^4.0.0",
"@angular/compiler": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/http": "^4.0.0",
"@angular/platform-browser": "^4.0.0",
"@angular/platform-browser-dynamic": "^4.0.0",
"@angular/router": "^4.0.0",
"core-js": "~2.4.1",
"highlight.js": "~9.10.0",
"ng-dynamic": "~3.0.0",
"object-partners-revealjs-theme": "ObjectPartners/object-partners-revealjs-theme#1.0.1",
"reflect-metadata": "~0.1.10",
"reveal.js": "~3.4.1",
"rxjs": "~5.3.0",
"zone.js": "~0.8.5"
},
"lint-staged": {
"src/**/*.ts": [
"npm run format",
"git add"
]
}
}