-
Notifications
You must be signed in to change notification settings - Fork 0
/
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": "@marchyang/create-node-app",
"version": "1.3.4",
"description": "create node project",
"main": "./dist/main.cjs",
"bin": "./dist/main.cjs",
"type": "module",
"keywords": [
"node",
"create node project"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "node --loader ts-node/esm ./src/index.ts",
"dev2": "ts-node ./src/index.ts",
"dev:debug": " node --inspect-brk --loader ts-node/esm ./src/index.ts",
"build:js": "npm run clean:lib && tsc && tsc-alias",
"build:prod": "webpack && cp -r ./src/template ./dist"
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/March-Wind/create-node-app"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.20.7",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/node": "^18.11.18",
"babel-loader": "^9.1.2",
"core-js": "^3.27.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.2",
"tsconfig-paths": "^4.1.2",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"enquirer": "^2.3.6",
"execa": "^6.1.0",
"listr2": "^5.0.6"
},
"files": [
"dist/*",
"readme.md",
"package.json"
]
}