-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.43 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
{
"name": "@project-error/cli",
"version": "2.11.5",
"description": "A CLI to quickly scaffold and boilerplate FiveM resources",
"main": "index.js",
"bin": {
"pe-create": "dist/index.js"
},
"scripts": {
"dev": "tsnd --respawn src/index.ts --ignonore-watch ./notes",
"test": "jest",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/project-error/pe-cli.git"
},
"author": "Project Error",
"license": "MIT",
"bugs": {
"url": "https://github.com/project-error/pe-cli/issues"
},
"homepage": "https://github.com/project-error/pe-cli#readme",
"dependencies": {
"@types/rimraf": "^3.0.0",
"axios": "^0.21.1",
"chalk": "^4.1.0",
"clear": "^0.1.0",
"figlet": "^1.5.0",
"fs-extra": "^10.0.0",
"inquirer": "^7.3.3",
"ora": "^5.1.0",
"rimraf": "^3.0.2",
"shelljs": "^0.8.4",
"sprintf-js": "^1.1.2",
"webpack": "^5.9.0",
"webpack-cli": "^4.2.0"
},
"devDependencies": {
"@types/figlet": "^1.2.1",
"@types/fs-extra": "^9.0.12",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.23",
"@types/shelljs": "^0.8.8",
"@types/sprintf-js": "^1.1.2",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.14.0",
"jest": "^27.0.5",
"mocha": "^8.2.1",
"prettier": "^2.3.2",
"ts-node-dev": "^1.0.0",
"typescript": "^4.1.2"
}
}