-
Notifications
You must be signed in to change notification settings - Fork 136
/
package.json
87 lines (87 loc) · 2.54 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
{
"name": "@practica/create-node-app",
"version": "0.0.10",
"description": "Create Node.js app that is packed with best practices AND strive for simplicity",
"main": "./src/code-generator/index.js",
"directories": {
"doc": "docs",
"test": "test"
},
"bin": {
"create-node-app": "bin/cli.js"
},
"scripts": {
"test": "jest --runInBand",
"test:quick": "jest \"^((?!slow).)*$\"",
"test:dev": "jest --silent --watch \"^((?!slow).)*$\"",
"test:dev:verbose": "jest --watch \"^((?!slow).)*$\"",
"lint": "eslint",
"build": "tsc && npm run copy-templates",
"copy-templates": "rsync -av --exclude '*node_modules*' ./src/code-templates/ ./.dist/src/code-templates",
"build:watch": "tsc --watch",
"start:cli:interactive": "node ./.dist/bin/cli.js interactive",
"start:cli": "node ./.dist/bin/cli.js immediate",
"publish:build": "npm run build && npm publish ./.dist --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/practicajs/practica.git"
},
"keywords": [
"nodejs",
"express",
"best-practices"
],
"author": "Practica",
"license": "MIT",
"bugs": {
"url": "https://github.com/bestpractices/practica/issues"
},
"homepage": "https://github.com/bestpractices/practica#readme",
"dependencies": {
"@docusaurus/core": "^2.1.0",
"@docusaurus/preset-classic": "^2.1.0",
"@types/blessed": "^0.1.19",
"@types/commander": "^2.12.2",
"@types/fs-extra": "^9.0.13",
"@types/ink-spinner": "^3.0.1",
"blessed": "^0.1.81",
"commander": "^9.1.0",
"figlet": "^1.5.2",
"fs-extra": "^10.0.1",
"import-jsx": "^4.0.1",
"ink": "^3.2.0",
"ink-big-text": "^1.2.0",
"ink-image": "^2.0.0",
"ink-multi-select": "^2.0.0",
"ink-progress-bar": "^3.0.0",
"ink-select-input": "^4.2.1",
"ink-spinner": "^4.0.3",
"ink-task-list": "^1.1.1",
"ink-text-input": "^4.0.3",
"ora": "5.4.1",
"prompts": "^2.4.2",
"react": "^17.0.2",
"replace-in-file": "^6.3.5"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/figlet": "^1.5.4",
"@types/jest": "^27.4.1",
"@types/ora": "^3.2.0",
"@types/prettier": "^2.4.4",
"@types/sinon": "^10.0.11",
"axios": "^0.27.2",
"execa": "^5.1.1",
"jest": "^29.7.0",
"jest-watch-suspend": "^1.1.2",
"jest-watch-typeahead": "^2.2.2",
"node-notifier": "^10.0.1",
"nodemon": "^3.1.0",
"prettier": "2.6.2",
"sinon": "^13.0.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.7.0",
"typescript": "5.2.2"
}
}