-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
54 lines (54 loc) · 1.46 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
{
"name": "forge-node-app",
"version": "1.0.6",
"description": "A fast way to generate Node.js starter app",
"main": "out/index.js",
"bin": "out/index.js",
"scripts": {
"build": "npx tsc",
"start": "node out/index.js",
"dev": "npx ts-node src/index.ts",
"format": "npx prettier src/**/*.ts --write",
"linter:fix": "npx eslint src/*.ts --fix"
},
"author": "Ilya Revenko <ilya.revenko17@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/irevenko/forge-node-app.git"
},
"bugs": {
"url": "https://github.com/irevenko/forge-node-app/issues"
},
"homepage": "https://github.com/irevenko/forge-node-app#readme",
"keywords": [
"typescript",
"nodejs",
"boilerplate",
"cli",
"create-node-app"
],
"devDependencies": {
"@tsconfig/node14": "^1.0.0",
"@types/inquirer": "^7.3.1",
"@types/node": "^14.14.5",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"dependencies": {
"chalk": "^4.1.0",
"inquirer": "^7.3.3",
"license": "^1.0.3",
"ora": "^5.1.0"
}
}