-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
100 lines (100 loc) · 2.84 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
{
"name": "dispatch",
"version": "0.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/ngxs-labs/dispatch.git"
},
"license": "MIT",
"homepage": "https://github.com/ngxs-labs/dispatch#readme",
"bugs": {
"url": "https://github.com/ngxs-labs/dispatch/issues"
},
"keywords": [
"ngxs",
"redux",
"store"
],
"scripts": {
"prebuild": "nx build dispatch-decorator --skip-nx-cache",
"build": "yarn prebuild && yarn postbuild",
"postbuild": "cpy README.md dist/libs/dispatch-decorator",
"test": "nx test dispatch-decorator",
"e2e": "nx e2e demos-e2e"
},
"private": true,
"devDependencies": {
"@angular-devkit/build-angular": "15.1.1",
"@angular-devkit/core": "15.1.1",
"@angular-devkit/schematics": "15.1.1",
"@angular-eslint/eslint-plugin": "15.0.0",
"@angular-eslint/eslint-plugin-template": "15.0.0",
"@angular-eslint/template-parser": "15.0.0",
"@angular/animations": "15.1.0",
"@angular/cli": "15.1.1",
"@angular/common": "15.1.0",
"@angular/compiler": "15.1.0",
"@angular/compiler-cli": "15.1.0",
"@angular/core": "15.1.0",
"@angular/platform-browser": "15.1.0",
"@angular/platform-browser-dynamic": "15.1.0",
"@angular/platform-server": "15.1.0",
"@commitlint/cli": "^17.5.0",
"@commitlint/config-conventional": "^17.4.4",
"@nguniversal/builders": "15.1.0",
"@nguniversal/express-engine": "15.1.0",
"@ngxs/store": "3.7.6",
"@nrwl/angular": "15.8.9",
"@nrwl/cli": "15.8.9",
"@nrwl/cypress": "15.8.9",
"@nrwl/eslint-plugin-nx": "15.8.9",
"@nrwl/jest": "15.8.9",
"@nrwl/linter": "15.8.9",
"@nrwl/workspace": "15.8.9",
"@schematics/angular": "15.1.1",
"@types/express": "^4.17.2",
"@types/jest": "29.4.4",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "5.43.0",
"@typescript-eslint/parser": "5.43.0",
"cpy-cli": "^3.1.1",
"cypress": "^10.0.0",
"eslint": "8.15.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.12.1",
"express": "^4.17.1",
"husky": "^8.0.0",
"jest": "29.4.3",
"jest-environment-jsdom": "29.4.3",
"jest-preset-angular": "13.0.0",
"lint-staged": "^13.0.0",
"ng-packagr": "~15.1.0",
"nx": "15.8.9",
"postcss": "8.4.16",
"postcss-import": "14.1.0",
"postcss-preset-env": "7.5.0",
"postcss-url": "10.1.3",
"prettier": "2.7.1",
"rxjs": "^7.5.4",
"ts-jest": "29.0.5",
"ts-node": "^10.0.0",
"tslib": "^2.3.1",
"typescript": "4.8.4",
"zone.js": "0.12.0"
},
"lint-staged": {
"*.{js,ts,html,md}": [
"prettier --write"
]
},
"prettier": {
"semi": true,
"endOfLine": "lf",
"arrowParens": "avoid",
"tabWidth": 2,
"printWidth": 100,
"trailingComma": "none",
"bracketSpacing": true,
"singleQuote": true
}
}