-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.83 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
{
"name": "colabgasy",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "node server.js",
"serve": "ng serve",
"hmr": "ng serve --configuration hmr",
"build": "ng build",
"build:prod": "ng build --prod",
"build:aot": "ng build --aot",
"test": "jest",
"test:w": "jest --watch",
"test:ci": "jest --runInBand",
"test:cov": "jest --coverage",
"lint": "ng lint",
"e2e": "testcafe-live chrome:headless ./e2e/**/*.e2e-spec.ts",
"e2e:browser": "testcafe-live chrome ./e2e/**/*.e2e-spec.ts",
"e2e:ci": "testcafe chrome:headless,firefox:headless ./e2e/**/*.e2e-spec.ts --app 'yarn serve' --app-init-delay 50000",
"postinstall": "ng build --prod",
"deploy": "git push origin master && git push heroku master",
"format": "prettier './{src,e2e}/**/*.{ts,js,json,scss,md}' --write",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o docs",
"codecov": "codecov -f coverage/*.json"
},
"private": true,
"dependencies": {
"@angular/animations": "^7.2.2",
"@angular/cli": "~7.2.3",
"@angular/common": "^7.2.2",
"@angular/compiler": "^7.2.2",
"@angular/compiler-cli": "^7.2.2",
"@angular/core": "^7.2.2",
"@angular/forms": "^7.2.2",
"@angular/http": "^7.2.2",
"@angular/platform-browser": "^7.2.2",
"@angular/platform-browser-dynamic": "^7.2.2",
"@angular/pwa": "^0.12.3",
"@angular/router": "^7.2.2",
"@angular/service-worker": "^7.2.2",
"compression": "^1.7.3",
"core-js": "^2.5.4",
"express": "^4.16.4",
"rxjs": "~6.3.3",
"tslib": "^1.9.0",
"typescript": "~3.2.4",
"zone.js": "~0.8.29"
},
"devDependencies": {
"@angular-builders/jest": "^7.2.1",
"@angular-devkit/build-angular": "~0.12.0",
"@angular/language-service": "^7.2.2",
"@angularclass/hmr": "^2.1.3",
"@babel/core": "^7.2.2",
"@storybook/addon-actions": "^4.1.11",
"@storybook/addon-knobs": "^4.1.11",
"@storybook/addon-links": "^4.1.11",
"@storybook/addon-notes": "^4.1.11",
"@storybook/addons": "^4.1.11",
"@storybook/angular": "^4.1.11",
"@storybook/cli": "^4.1.11",
"@types/jest-image-snapshot": "^2.4.0",
"@types/node": "^10.12.21",
"@types/storybook__addon-actions": "^3.4.1",
"@types/storybook__addon-knobs": "^4.0.0",
"@types/storybook__addon-links": "^3.3.3",
"@types/storybook__addon-notes": "^4.0.1",
"babel-loader": "^8.0.5",
"codecov": "^3.1.0",
"codelyzer": "~4.3.0",
"jest": "^23.6.0",
"jest-image-snapshot": "^2.7.0",
"jest-preset-angular": "^6.0.2",
"prettier": "1.15.3",
"testcafe": "^0.23.3",
"testcafe-angular-selectors": "^0.3.2",
"testcafe-live": "^0.1.4",
"ts-node": "~7.0.0",
"tslint": "~5.11.0",
"tslint-config-prettier": "^1.17.0"
},
"engines": {
"node": ">=8.15.0 <=10.12.0"
}
}