This repository has been archived by the owner on Apr 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
78 lines (78 loc) · 2.07 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
{
"dependencies": {
"@angular/animations": "~11.2.0",
"@angular/common": "~11.2.0",
"@angular/core": "~11.2.0",
"@angular/elements": "~11.2.0",
"@angular/forms": "~11.2.0",
"@angular/platform-browser": "~11.2.0",
"@angular/platform-browser-dynamic": "~11.2.0",
"@angular/router": "~11.2.0",
"rxjs": "^6.6.0",
"tslib": "^2.0.0",
"zone.js": "~0.10.0"
},
"description": "A preconfigured template for Snowpack with Angular",
"devDependencies": {
"@angular-devkit/build-optimizer": "~0.1102.0",
"@angular-eslint/eslint-plugin": "^1.0.0",
"@angular-eslint/eslint-plugin-template": "^1.0.0",
"@angular-eslint/template-parser": "^1.0.0",
"@angular/cli": "~11.2.0",
"@angular/compiler": "~11.2.0",
"@angular/compiler-cli": "~11.2.0",
"@testing-library/angular": "^10.2.1",
"@testing-library/cypress": "^7.0.2",
"@types/jest": "^26.0.15",
"@types/node": "^14.0.0",
"@types/snowpack-env": "^2.3.3",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"cypress": "^6.0.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^32.0.0",
"eslint-plugin-prefer-arrow": "^1.2.2",
"jest": "^26.6.3",
"jest-preset-angular": "^8.3.2",
"prettier": "^2.0.5",
"snowpack": "^3.0.0",
"snowpack-plugin-angular": "^2.0.0",
"typescript": "~4.0.2"
},
"jest": {
"preset": "jest-preset-angular",
"setupFilesAfterEnv": [
"./src/setup-jest.ts"
]
},
"keywords": [
"csa-template",
"snowpack",
"angular"
],
"license": "MIT",
"name": "snowpack-template-angular",
"prettier": {
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "all",
"useTabs": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/YogliB/snowpack-template-angular.git"
},
"scripts": {
"build": "snowpack build",
"e2e": "cypress open",
"e2e:silent": "cypress run",
"format": "prettier --write .",
"lint": "eslint --ignore-path .gitignore .",
"postinstall": "ngcc",
"start": "snowpack dev",
"test": "jest ./src"
},
"version": "0.6.0"
}