-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.29 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.29 KB
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
{
"name": "ngx-gridstack-project",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build ngx-gridstack",
"prepublish": "yarn build",
"publish": "yarn publish --access public dist/ngx-gridstack",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"docs:json": "compodoc -p ./tsconfig.json -e json -d .",
"storybook": "npm run docs:json && start-storybook -p 6006",
"build-storybook": "npm run docs:json && build-storybook",
"husky": "yarn lint-staged --relative",
"chromatic": "npx chromatic --project-token=c5b3f5ba2a7f"
},
"private": false,
"lint-staged": {
"*.{js,ts,html}": [
"eslint --fix"
],
"*.scss": [
"stylelint --fix"
]
},
"dependencies": {
"@angular/animations": "~12.2.14",
"@angular/common": "~12.2.14",
"@angular/compiler": "~12.2.14",
"@angular/core": "~12.2.14",
"@angular/forms": "~12.2.14",
"@angular/platform-browser": "~12.2.14",
"@angular/platform-browser-dynamic": "~12.2.14",
"@angular/router": "~12.2.14",
"gridstack": "^4.3.1",
"lodash": "^4.17.21",
"rxjs": "~7.4.0",
"safe-json-stringify": "^1.2.0",
"tslib": "^2.3.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~12.2.13",
"@angular-eslint/builder": "^12.6.1",
"@angular-eslint/eslint-plugin": "^12.6.1",
"@angular-eslint/eslint-plugin-template": "^12.6.1",
"@angular-eslint/schematics": "^12.6.1",
"@angular-eslint/template-parser": "^12.6.1",
"@angular/cli": "~12.2.13",
"@angular/compiler-cli": "~12.2.13",
"@angular/elements": "^13.1.0",
"@babel/core": "^7.16.0",
"@compodoc/compodoc": "^1.1.16",
"@eslint/eslintrc": "^1.0.5",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-links": "^6.4.9",
"@storybook/angular": "^6.4.9",
"@storybook/builder-webpack5": "^6.4.9",
"@storybook/manager-webpack5": "^6.4.9",
"@types/lodash": "^4.14.178",
"@types/node": "^12.11.1",
"@types/safe-json-stringify": "^1.1.2",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"@webcomponents/custom-elements": "^1.5.0",
"babel-loader": "^8.2.3",
"chromatic": "^6.2.3",
"css-loader": "^6.5.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-storybook": "^0.5.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"ng-packagr": "^12.2.2",
"postcss": "^8.3.11",
"prettier": "^2.5.1",
"sass": "^1.45.0",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"stylelint": "^14.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard-scss": "^3.0.0",
"typescript": "~4.3.5"
}
}