-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.55 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
{
"name": "@novicell/cli",
"version": "3.0.2",
"description": "A CLI to help developers start up new projects",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/Novicell/novicell-cli.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "webpack --watch",
"build": "webpack",
"build:prod": "---script missing---",
"dev-old": "nodemon -e ts,js --watch 'src' --exec 'tsc'",
"prettier": "prettier --write src/**/*.ts",
"nvcl-cli": "node ./dist/index.js"
},
"author": "",
"license": "MIT",
"private": false,
"engines": {
"node": "16.11.0"
},
"bin": {
"@novicell/cli": "./dist/index.js"
},
"files": [
"dist/**/*",
"README.md",
"src/**/*",
"resources/**/*"
],
"devDependencies": {
"@types/figlet": "^1.2.0",
"@types/fs-extra": "^8.0.1",
"@types/inquirer": "^6.5.0",
"@types/node": "^12.7.3",
"@types/shelljs": "^0.8.5",
"@types/string-similarity": "^3.0.0",
"clean-webpack-plugin": "^3.0.0",
"husky": "^3.1.0",
"nodemon": "^1.19.1",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"raw-loader": "^3.1.0",
"ts-loader": "^6.0.4",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^3.6.2",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.6"
},
"dependencies": {
"@types/cross-spawn": "^6.0.1",
"axios": "^0.21.1",
"clear": "^0.1.0",
"cross-spawn": "^7.0.1",
"figlet": "^1.2.4",
"fs-extra": "^8.1.0",
"inquirer": "^7.0.0",
"path": "^0.12.7"
}
}