-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.23 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
{
"name": "lib-cli",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:cavencj/lib-cli.git",
"author": "cavencj <cavencj@gmail.com>",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "rimraf dist && gulp dev",
"build": "rimraf dist && gulp build",
"build:node": "rimraf dist && gulp buildNode",
"build:iife": "rimraf dist && gulp buildIIFE",
"lint": "eslint --fix src"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/eslint-parser": "^7.21.8",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.5",
"chalk": "^5.2.0",
"esbuild": "^0.20.2",
"esbuild-plugin-inline-image": "^0.0.9",
"esbuild-sass-plugin": "^3.1.0",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"express": "^4.18.2",
"fs-extra": "^11.1.1",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"portfinder": "^1.0.32",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"sass": "^1.62.1",
"shelljs": "^0.8.5"
}
}