forked from currents-dev/currents-nx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.69 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
{
"name": "@currents/nx",
"version": "0.0.5",
"description": "Currents plugin for Nx",
"author": "Andrew Goldis",
"homepage": "https://currents.dev",
"license": "MIT",
"keywords": [
"nx",
"nrwl",
"Cypress",
"Currents"
],
"repository": {
"type": "git",
"url": "https://github.com/currents-dev/currents-nx"
},
"bugs": {
"url": "https://github.com/currents-dev/currents-nx/issues"
},
"scripts": {
"lint": "eslint . --ext .ts",
"compile": "tsc -d",
"prepare": "husky install",
"release": "release-it",
"clean": "rimraf dist"
},
"main": "./index.js",
"typings": "./index.d.ts",
"schematics": "./generators.json",
"builders": "./executors.json",
"ng-update": {
"requirements": {},
"migrations": "./migrations.json"
},
"release-it": {
"npm": {
"publish": true
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
}
},
"hooks": {
"before:init": "run-s clean compile"
}
},
"devDependencies": {
"@release-it/conventional-changelog": "^3.3.0",
"@types/node": "14.14.33",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-import": "2.25.2",
"husky": "^7.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.2",
"release-it": "^14.11.5",
"rimraf": "^3.0.2",
"typescript": "^4.5.2"
},
"dependencies": {
"@nrwl/devkit": "*",
"@nrwl/linter": "*",
"@nrwl/workspace": "*",
"cy2": "*"
}
}