-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathpackage.json
112 lines (112 loc) · 4.14 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
102
103
104
105
106
107
108
109
110
111
112
{
"name": "ngx-drag-to-select",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "ng serve",
"build": "npm run clean && npm run build:app",
"build:app": "ng build app --configuration production",
"serve:ssr": "node dist/server/main.js",
"dev:ssr": "ng run app:serve-ssr",
"prerender": "ng run app:prerender",
"build:prerender-ghpages": "npm run clean && npm run prerender -- --browser-target=app:build:production,ghpages",
"build:lib": "npm run clean && npm run build:lib:code && npm run build:lib:sass && npm run copy:styles && npm run copy:readme",
"build:lib:code": "ng build ngx-drag-to-select --configuration production",
"build:lib:sass": "sass --no-source-map projects/ngx-drag-to-select/src/scss/ngx-drag-to-select.scss dist/ngx-drag-to-select/ngx-drag-to-select.css",
"deploy": "ngh --dir dist/browser",
"copy:styles": "cpr projects/ngx-drag-to-select/src/scss dist/ngx-drag-to-select/scss",
"copy:readme": "copyfiles README.md dist/ngx-drag-to-select",
"format:base": "prettier \"{src,cypress,projects}/**/*{.ts,.js,.json}\"",
"format:check": "npm run format:base -- --list-different",
"format:fix": "npm run format:base -- --write",
"style": "npm run lint:check && npm run format:check",
"style:fix": "npm run lint:fix && npm run format:fix",
"clean": "del dist",
"test": "ng test",
"test:watch": "npm run test -- --watch",
"e2e": "ng e2e",
"cypress:open": "ng run app:cypress-open",
"cypress:run": "ng run app:cypress-run",
"lint": "ng lint",
"lint:check": "ng lint",
"lint:fix": "ng lint app --fix && ng lint ngx-drag-to-select --fix",
"lint:ci": "npm run lint:check && npm run format:check",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 -k ./projects/ngx-drag-to-select"
},
"husky": {
"hooks": {
"commit-msg": "commitlint --env HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src,projects,cypress}/**/*{.ts,.js,.json}": [
"prettier --write",
"git add"
]
},
"private": true,
"dependencies": {
"@angular/animations": "^13.0.3",
"@angular/cdk": "^13.0.3",
"@angular/common": "^13.0.3",
"@angular/compiler": "^13.0.3",
"@angular/core": "^13.0.3",
"@angular/forms": "^13.0.3",
"@angular/material": "^13.0.3",
"@angular/platform-browser": "^13.0.3",
"@angular/platform-browser-dynamic": "^13.0.3",
"@angular/platform-server": "^13.0.3",
"@angular/router": "^13.0.3",
"core-js": "^3.6.5",
"rxjs": "^6.6.3",
"tslib": "^2.3.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-builders/jest": "^13.0.1",
"@angular-devkit/build-angular": "~13.0.4",
"@angular-eslint/builder": "13.0.1",
"@angular-eslint/eslint-plugin": "13.0.1",
"@angular-eslint/eslint-plugin-template": "13.0.1",
"@angular-eslint/schematics": "13.0.1",
"@angular-eslint/template-parser": "13.0.1",
"@angular/cli": "^13.0.4",
"@angular/compiler-cli": "^13.0.3",
"@angular/language-service": "^13.0.3",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-angular": "^11.0.0",
"@commitlint/travis-cli": "^11.0.0",
"@cypress/schematic": "1.6.0",
"@nguniversal/builders": "^13.0.1",
"@nguniversal/express-engine": "^13.0.1",
"@types/express": "^4.17.8",
"@types/jest": "^26.0.15",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "5.3.0",
"@typescript-eslint/parser": "5.3.0",
"conventional-changelog-cli": "^2.1.0",
"copyfiles": "^2.4.0",
"cpr": "^3.0.1",
"cypress": "^9.1.1",
"del-cli": "^3.0.1",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jsdoc": "latest",
"eslint-plugin-prefer-arrow": "latest",
"express": "^4.17.1",
"husky": "^4.3.0",
"jest": "^27.4.3",
"jest-preset-angular": "^11.0.1",
"lint-staged": "^10.4.2",
"ng-packagr": "^13.0.8",
"prettier": "^2.1.2",
"sass": "^1.38.0",
"start-server-and-test": "^1.14.0",
"ts-loader": "^8.0.6",
"ts-node": "^9.0.0",
"typescript": "4.4.4",
"webpack-cli": "^4.1.0"
}
}