-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.37 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
{
"name": "@nanogiants/generator-nano-nodegen",
"version": "1.0.0",
"description": "A simple generator for scaffolding node.js apps",
"author": "René Heinen<[email protected]>",
"publishConfig": {
"access": "public"
},
"files": [
"generators"
],
"keywords": [
"yeoman-generator",
"node",
"generator",
"jest",
"eslint",
"husky",
"prettier",
"lint-staged",
"nanogiants"
],
"license": "MIT",
"homepage": "https://github.com/nanogiants/nano-nodegen#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nanogiants/nano-nodegen.git"
},
"scripts": {
"build": "rimraf ./generators && rimraf ./output && tsc && npm run copy:assets",
"start:dev": "npm run build && npm link && mkdir output && cd output && yo @nanogiants/nano-nodegen",
"copy:assets": "./scripts/copy_assets.sh",
"test": "jest",
"test:cov": "jest --coverage",
"sonarqube:start": "docker-compose up -d",
"sonarqube:stop": "docker-compose down",
"sonarqube:report": "sh scripts/report_sonarqube.sh -k",
"init-changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"preversion": "npm run test:cov",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"dependencies": {
"axios": "^0.21.0",
"chalk": "^4.1.2",
"validate-npm-package-name": "^3.0.0",
"yeoman-generator": "^4.12.0"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.11.7",
"@types/validate-npm-package-name": "^3.0.3",
"@types/yeoman-assert": "^3.1.1",
"@types/yeoman-generator": "^4.11.3",
"@types/yeoman-test": "^2.0.5",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"conventional-changelog-cli": "^2.1.1",
"eslint": "^8.2.0",
"eslint-plugin-import": "^2.25.3",
"husky": "^4.3.0",
"jest": "^27.3.1",
"lint-staged": "^10.5.1",
"nodemon": "^2.0.15",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.5.2",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^3.0.0"
},
"lint-staged": {
"src/**/*.{js,ts}": [
"eslint 'src/**/*.{js,ts,tsx}' --fix",
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}