-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.87 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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "create-parcel-static",
"version": "1.0.2",
"type": "module",
"author": "mrtoxas",
"description": "Project builder for creating static sites based Parcel",
"repository": "https://github.com/mrtoxas/create-parcel-static.git",
"license": "MIT",
"bin": {
"parcel-static": "dist/index.mjs"
},
"keywords": [
"frontend",
"project-builder",
"parcel",
"css",
"less",
"sass",
"scss",
"stylus",
"tailwind",
"javascript",
"typescript",
"jquery",
"html",
"pug",
"ejs",
"prettier",
"eslint",
"stylelint"
],
"files": [
"index.js",
"dist",
"templates"
],
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"scripts": {
"start": "node esbuild.watch.config.js",
"test": "node dist/index.mjs",
"clear": "rimraf dist",
"build": "npm run clear && node esbuild.config.js",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint src/**/*.ts",
"lint:fix": "npm run lint --fix",
"prettier:fix": "prettier src/**/*.ts --write",
"fix:all": "npm run lint:fix && npm run prettier:fix"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/minimist": "^1.2.5",
"@types/validate-npm-package-name": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"esbuild": "0.20.1",
"esbuild-node-externals": "^1.13.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"minimist": "^1.2.8",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@inquirer/prompts": "^4.1.0",
"chalk": "^5.3.0",
"deepmerge": "^4.3.1",
"fs-extra": "^11.2.0",
"minimist": "^1.2.8",
"validate-npm-package-name": "^5.0.0"
}
}