-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
101 lines (101 loc) · 3.1 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
{
"name": "@ngparty/rosa",
"version": "0.2.0",
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"start": "concurrently --kill-others \"yarn serve:api -q\" \"yarn serve:ui\"",
"start:hmr": "concurrently --kill-others \"yarn serve:api -q\" \"yarn serve:ui:hmr\"",
"serve:ui": "ng serve --proxy-config proxy.conf.json --aot",
"serve:api": "json-server --watch \"api/db.json\"",
"build": "ng build --prod",
"test": "jest --watch",
"test:ci": "jest --runInBand",
"test:coverage": "jest --coverage",
"e2e": "testcafe-live chrome e2e/**/*.e2e-spec.ts",
"e2e:ci": "testcafe all e2e/**/*.e2e-spec.ts --app 'yarn start' --app-init-delay 4000",
"lint": "ng lint --format codeFrame --fix",
"format": "prettier {src,e2e}/**/*.{ts,tsx,json,md,scss,css,less} --write",
"style": "yarn format && yarn lint",
"verify": "yarn format -l && yarn lint && jest --bail",
"tslint-check": "tslint-config-prettier-check ./tslint.json",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook",
"commitmsg": "commitlint -e $GIT_PARAMS",
"precommit": "lint-staged",
"prepush": "yarn verify"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"header-max-length": [
2,
"always",
100
]
}
},
"lint-staged": {
"{src,e2e}/**/*.{js,jsx,ts,tsx}": [
"yarn lint",
"git add"
],
"{src,e2e}/**/*.{js,jsx,ts,tsx,css,scss,less,md}": [
"prettier --write",
"git add"
]
},
"private": true,
"dependencies": {
"@angular/animations": "5.2.9",
"@angular/common": "5.2.9",
"@angular/compiler": "5.2.9",
"@angular/core": "5.2.9",
"@angular/forms": "5.2.9",
"@angular/http": "5.2.9",
"@angular/platform-browser": "5.2.9",
"@angular/platform-browser-dynamic": "5.2.9",
"@angular/router": "5.2.9",
"core-js": "2.5.3",
"rxjs": "^5.5.7",
"zone.js": "0.8.20"
},
"devDependencies": {
"@angular/cli": "1.7.3",
"@angular/compiler-cli": "5.2.9",
"@angular/language-service": "5.2.9",
"@angularclass/hmr": "2.1.3",
"@commitlint/cli": "6.1.3",
"@commitlint/config-conventional": "6.1.3",
"@storybook/addon-actions": "3.4.0-rc.2",
"@storybook/addon-knobs": "3.4.0-rc.2",
"@storybook/addon-links": "3.4.0-rc.2",
"@storybook/addon-notes": "3.4.0-rc.2",
"@storybook/addon-options": "3.4.0-rc.2",
"@storybook/addon-storysource": "3.4.0-rc.2",
"@storybook/addons": "3.4.0-rc.2",
"@storybook/angular": "3.4.0-rc.2",
"@types/node": "8.9.5",
"@types/webpack-env": "1.13.5",
"babel-core": "6.26.0",
"codelyzer": "4.2.1",
"concurrently": "3.5.1",
"husky": "0.14.3",
"jest": "22.4.2",
"jest-preset-angular": "5.2.1",
"json-server": "0.12.1",
"lint-staged": "7.0.0",
"prettier": "1.11.1",
"testcafe": "0.19.1",
"testcafe-angular-selectors": "0.3.0",
"testcafe-live": "0.1.3",
"tslint": "5.9.1",
"tslint-config-prettier": "1.10.0",
"tslint-config-standard": "7.0.0",
"typescript": "2.6.2"
}
}