forked from typebytes/angular-checklist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.37 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
99
100
101
102
103
104
105
{
"name": "angular-checklist",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "concurrently \"ng serve\" \"yarn build-content:watch\"",
"build": "ng build",
"build:ssr": "ng build --prod && ng run angular-checklist:server -- --output-hashing=none",
"prerender": "npm run build:ssr && ts-node prerender.ts",
"serve:ssr": "npm run prerender && http-server dist/browser",
"test": "ng test",
"lint": "ng lint",
"e2e": "cypress open",
"build-content": "ts-node ./tools/build-checklist.ts",
"build-content:watch": "nodemon",
"ci": "npm run build-content && ng build --prod",
"format:base": "prettier \"{src,tools,cypress}/**/*{.ts,.js,.json,.html}\"",
"format:check": "npm run format:base -- --list-different",
"format:fix": "npm run format:base -- --write"
},
"husky": {
"hooks": {
"commit-msg": "commitlint --env HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src,tools}/**/*{.ts,.js,.json,.html}": [
"prettier --write",
"git add"
]
},
"private": true,
"dependencies": {
"@angular/animations": "^7.1.0",
"@angular/cdk": "^7.1.0",
"@angular/common": "^7.1.0",
"@angular/compiler": "^7.1.0",
"@angular/core": "^7.1.0",
"@angular/forms": "^7.1.0",
"@angular/http": "^7.1.0",
"@angular/material": "^7.1.0",
"@angular/platform-browser": "^7.1.0",
"@angular/platform-browser-dynamic": "^7.1.0",
"@angular/platform-server": "^7.1.0",
"@angular/router": "^7.1.0",
"@fortawesome/angular-fontawesome": "^0.3.0",
"@fortawesome/fontawesome-svg-core": "^1.2.6",
"@fortawesome/free-brands-svg-icons": "^5.4.1",
"@fortawesome/free-solid-svg-icons": "^5.4.1",
"@ngrx/router-store": "^6.1.2",
"@ngrx/store": "^6.1.2",
"@ngrx/store-devtools": "^6.1.2",
"@types/node": "^10.1.2",
"core-js": "^2.5.4",
"fuzzysort": "^1.1.4",
"hammerjs": "^2.0.8",
"highlight.js": "^9.13.1",
"lodash.groupby": "^4.6.0",
"ngrx-store-localstorage": "^5.1.0",
"normalize.css": "^8.0.0",
"rxjs": "^6.3.3",
"tslib": "^1.9.0",
"zone.js": "^0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.11.0",
"@angular/cli": "~7.1.0",
"@angular/compiler-cli": "^7.1.0",
"@angular/language-service": "^7.1.0",
"@commitlint/cli": "^7.2.1",
"@commitlint/config-angular": "^7.1.2",
"@commitlint/travis-cli": "^7.2.1",
"@cypress/webpack-preprocessor": "^4.0.2",
"@nguniversal/module-map-ngfactory-loader": "^7.0.2",
"@types/highlight.js": "^9.12.2",
"@types/jasmine": "~2.8.6",
"@types/jasminewd2": "~2.0.3",
"@types/markdown-it": "^0.0.4",
"chalk": "^2.4.1",
"codelyzer": "^4.5.0",
"concurrently": "^4.1.0",
"cypress": "^3.1.3",
"gray-matter": "^4.0.1",
"http-server": "^0.11.1",
"husky": "^1.2.0",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~1.7.1",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~1.4.2",
"karma-jasmine": "~1.1.1",
"karma-jasmine-html-reporter": "^0.2.2",
"lint-staged": "^8.1.0",
"markdown-it": "^8.4.1",
"ngrx-store-freeze": "^0.2.4",
"nodemon": "^1.18.7",
"prettier": "^1.15.2",
"shorthash": "^0.0.2",
"ts-loader": "^5.3.1",
"ts-node": "^6.0.3",
"tslint": "^5.11.0",
"typescript": "~3.1.6"
}
}