-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
101 lines (101 loc) · 2.62 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": "ngrx",
"version": "0.4.2",
"description": "🎉 Angular + RxJS + TypeScript = 🔥",
"repository": "git@github.com:rx-ts/ngrx.git",
"author": "JounQin <admin@1stg.me>",
"license": "MIT",
"private": true,
"workspaces": [
"src"
],
"scripts": {
"build": "ng build",
"dev": "start-storybook -p 9001",
"lint": "run-p lint:*",
"lint:es": "eslint . --ext md,js,ts -f friendly",
"lint:scss": "stylelint .storybook/**/*.scss",
"lint:ts": "tslint -p . -t stylish",
"now-build": "build-storybook",
"postinstall": "yarn-deduplicate"
},
"devDependencies": {
"@1stg/app-config": "^0.6.1",
"@1stg/lib-config": "^0.6.1",
"@1stg/tslint-config": "^0.9.2",
"@angular-devkit/build-angular": "^0.1102.19",
"@angular-devkit/build-ng-packagr": "^0.1002.0",
"@angular/cli": "^8.3.29",
"@angular/common": "^8.2.14",
"@angular/compiler": "^8.2.14",
"@angular/compiler-cli": "^8.2.14",
"@angular/core": "^8.2.14",
"@angular/forms": "^8.2.14",
"@angular/platform-browser": "^8.2.14",
"@angular/platform-browser-dynamic": "^8.2.14",
"@babel/core": "^7.24.5",
"@commitlint/cli": "^8.3.6",
"@storybook/addon-actions": "^5.3.21",
"@storybook/addon-console": "^1.2.3",
"@storybook/addon-knobs": "^5.3.21",
"@storybook/addon-links": "^5.3.21",
"@storybook/addon-notes": "^5.3.21",
"@storybook/addon-storysource": "^5.3.21",
"@storybook/angular": "^5.3.21",
"@storybook/source-loader": "^5.3.21",
"@types/lodash-es": "^4.17.12",
"@types/node": "^13.13.52",
"@types/storybook__addon-knobs": "^5.2.1",
"@types/webpack": "^4.41.38",
"@types/webpack-env": "^1.18.4",
"@types/webpack-merge": "^4.1.5",
"lodash-es": "^4.17.21",
"ng-packagr": "^5.7.1",
"npm-run-all2": "^5.0.2",
"rxjs": "^6.6.7",
"sanitize.css": "^11.0.1",
"ts-node": "^8.10.2",
"tsickle": "^0.46.3",
"tslib": "^1.14.1",
"tslint": "^6.1.3",
"webpack-merge": "^4.2.2",
"yarn-deduplicate": "^1.1.1",
"zone.js": "^0.11.4"
},
"resolutions": {
"typescript": "~3.9.10"
},
"browserslist": [
"extends @1stg/browserslist-config/modern"
],
"commitlint": {
"extends": [
"@1stg"
]
},
"eslintIgnore": [
"!/.*.js",
"dist",
"storybook-static",
"CHANGELOG.md"
],
"prettier": "@1stg/prettier-config/angular",
"remarkConfig": {
"plugins": [
"@1stg/remark-config"
]
},
"renovate": {
"extends": [
"@1stg"
]
},
"standard-version": {
"skip": {
"tag": true
}
},
"stylelint": {
"extends": "@1stg/stylelint-config/scss"
}
}