-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.58 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": "power-workflow",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server": "webpack-dev-server --config ./node_modules/cover-webpack-package --mode=development --packageName=cover --historyApiFallback=false --fix=x --open",
"start": "node ./scripts/start.js",
"package": "node ./scripts/build.js",
"lint": "eslint src --ext .js,.ts",
"release": "standard-version",
"commit": "eslint src --ext .js,.ts && git-cz"
},
"keywords": [],
"author": "Max",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/react": "^16.9.38",
"@types/react-dom": "^18.3.0",
"@types/typescript": "^2.0.0",
"@types/webpack-dev-server": "^3.11.0",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"cover-webpack-package": "0.0.38",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"git-cz": "^4.7.6",
"husky": "^7.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.3.0",
"standard-version": "^9.3.1",
"typescript": "^4.3.5",
"webpack": "^5.50.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@antv/g6": "4.1.7",
"font-awesome": "^4.7.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}