-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 931 Bytes
/
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
{
"name": "client",
"version": "1.0.0",
"repository": "https://github.com/GraphTD/client.git",
"author": "warmbl",
"license": "MIT",
"dependencies": {
"@antv/g6": "^4.6.11"
},
"devDependencies": {
"eslint": "^8.18.0",
"eslint-plugin-prettier": "^4.2.1",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-clean": "^0.4.0",
"gulp-clean-css": "^4.3.0",
"gulp-esbuild": "^0.10.4",
"gulp-serve": "^1.4.0",
"prettier": "^2.7.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"scripts": {
"build": "gulp build",
"serve": "webpack serve",
"serve-build": "gulp serve",
"fix": "prettier --write --ignore-unknown **/*",
"lint": "yarn run eslint **/*.js --ignore-pattern node_modules/ --ignore-pattern build/"
}
}