-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.67 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
{
"name": "@quentinpigne/create-node-app",
"version": "0.0.1-SNAPSHOT",
"type": "module",
"keywords": [
"node",
"starter"
],
"description": "A multi-framework initializer for Node.js application",
"repository": {
"type": "git",
"url": "https://github.com/quentinpigne/create-node-app.git"
},
"author": "Quentin Pigné",
"license": "MIT",
"engines": {
"node": ">=14"
},
"main": "./src/index.ts",
"files": [
"bin",
"dist",
"static",
"templates"
],
"bin": {
"create-node-app": "./bin/index.js"
},
"scripts": {
"start": "ts-node --esm --experimental-specifier-resolution=node src/index.ts",
"start:dist": "node --experimental-specifier-resolution=node dist/src/index.js",
"build": "pnpm run clean:dist && rollup --config rollup.config.js",
"global": "pnpm run build && npm i -g && create-node-app",
"clean:dist": "rm -rf ./dist",
"clean:all": "rm -rf ./dist ./node_modules ./pnpm-lock.yaml",
"refresh": "pnpm run clean:all && pnpm install",
"publish-package": "pnpm run build && pnpm publish"
},
"dependencies": {
"commander": "10.0.0",
"cross-spawn": "7.0.3",
"fs-extra": "11.1.0",
"handlebars": "4.7.7",
"inquirer": "9.1.4",
"tslib": "^2.5.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "24.0.1",
"@rollup/plugin-json": "6.0.0",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-typescript": "11.0.0",
"@types/cross-spawn": "6.0.2",
"@types/fs-extra": "11.0.1",
"@types/inquirer": "9.0.3",
"@types/node": "18.14.5",
"prettier": "2.8.4",
"rollup": "3.18.0",
"ts-node": "10.9.1",
"typescript": "4.9.5"
}
}