forked from practicajs/practica
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.86 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
{
"name": "@practica/generate",
"version": "0.0.1",
"description": "Create Node.js app that is packed with best practices AND strive for simplicity",
"main": "./src/code-generator/index.js",
"directories": {
"doc": "docs"
},
"bin": {
"practica": "./bin/cli.js"
},
"scripts": {
"test": "jest",
"test:quick": "jest \"^((?!slow).)*$\"",
"test:dev": "jest --silent --watch \"^((?!slow).)*$\"",
"test:dev:verbose": "jest --watch \"^((?!slow).)*$\"",
"build": "tsc && cp -R ./src/code-templates/ ./.dist/src/code-templates",
"build:watch": "tsc --watch",
"start:dev:reload": "nodemon ./src/code-generator/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/practicajs/practica"
},
"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": {
"@types/blessed": "^0.1.19",
"@types/commander": "^2.12.2",
"@types/fs-extra": "^9.0.13",
"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-select-input": "^4.2.1",
"ink-text-input": "^4.0.3",
"prompts": "^2.4.2",
"react": "^17.0.2",
"terminal-image": "^1.2.1",
"terminal-image-cli": "^1.1.0"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/sinon": "^10.0.11",
"execa": "^5.1.1",
"jest": "^27.5.1",
"node-notifier": "^10.0.1",
"nodemon": "^2.0.15",
"prettier": "2.6.2",
"sinon": "^13.0.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
}
}