-
Notifications
You must be signed in to change notification settings - Fork 316
/
package.json
98 lines (98 loc) · 3.12 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "habitat",
"version": "0.8.0",
"repository": {
"type": "git",
"url": "https://github.com/chef/bldr.git"
},
"license": "Apache-2.0",
"scripts": {
"build": "concurrently \"npm run build-js\" \"npm run build-css\"",
"build-css": "bin/build-css",
"build-css-watch": "npm run build-css -- --watch",
"build-js": "npm run lint-js && webpack --config webpack.conf.js",
"build-js-watch": "npm run build-js -- --watch",
"clean": "concurrently \"npm run clean-js\" \"npm run clean-css\"",
"clean-css": "rm -fv assets/app.css assets/app.css.map",
"clean-js": "rm -fv assets/app.js assets/app.js.map",
"dist": "bin/dist",
"lint": "concurrently \"npm run lint-css\" \"npm run lint-js\"",
"lint-css": "sass-lint --format json --verbose stylesheets**/*.scss app**/*.scss",
"lint-css-watch": "watch 'npm run lint-css'",
"lint-js": "tslint app**/*.ts",
"lint-js-watch": "watch 'npm run lint-js'",
"help": "cat README.md",
"repl": "cd app && tsun",
"start": "bin/start",
"test": "npm run test-unit",
"test-watch": "npm run test-unit-watch",
"test-unit": "karma start",
"test-unit-watch": "npm run test-unit -- --no-single-run",
"travis": "npm run test-unit"
},
"dependencies": {
"@angular/animations": "^4.3.5",
"@angular/cdk": "^2.0.0-beta.10",
"@angular/common": "^4.3.4",
"@angular/compiler": "^4.3.4",
"@angular/core": "^4.3.4",
"@angular/forms": "^4.3.4",
"@angular/http": "^4.3.4",
"@angular/material": "^2.0.0-beta.10",
"@angular/platform-browser": "^4.3.4",
"@angular/platform-browser-dynamic": "^4.3.4",
"@angular/router": "^4.3.4",
"ansi_up": "^1.3.0",
"blueimp-md5": "^2.7.0",
"bourbon": "^4.2.6",
"bourbon-neat": "^1.7.2",
"core-js": "^2.4.1",
"immutable": "^3.8.1",
"js-cookie": "^2.1.4",
"lodash": "^4.17.4",
"marked": "^0.3.6",
"moment": "^2.18.1",
"normalize-scss": "^4.0.3",
"parse-link-header": "^0.4.1",
"redux": "^3.6.0",
"redux-reset": "^0.3.0",
"redux-thunk": "^2.2.0",
"reflect-metadata": "^0.1.10",
"rxjs": "^5.4.3",
"uuid": "^3.0.1",
"whatwg-fetch": "^2.0.3",
"zone.js": "^0.8.4"
},
"devDependencies": {
"@types/jasmine": "2.5.36",
"@types/node": "^6.0.46",
"@types/zone.js": "0.0.27",
"awesome-typescript-loader": "^3.1.2",
"codelyzer": "^2.1.1",
"concurrently": "^3.4.0",
"jasmine-core": "~2.4.1",
"karma": "^1.6.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.0.2",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.30",
"karma-webpack": "^2.0.3",
"lite-server": "^2.3.0",
"ng2-mock-component": "^0.1.0",
"node-sass": "3.4.2",
"phantomjs-prebuilt": "^2.1.3",
"raw-loader": "^0.5.1",
"sass-lint": "1.4.0",
"ts-node": "^3.0.2",
"tslint": "^4.5.1",
"tslint-loader": "^3.5.2",
"tsun": "^0.1.5",
"typescript": "^2.2.2",
"watch": "^1.0.2",
"webpack": "^1.14.0"
}
}