-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.56 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
78
79
80
{
"name": "pandora-workbench",
"version": "1.0.0",
"description": "The workbench for coder",
"private": true,
"scripts": {
"clean:release": "rm -rf ./packages/workbench-electron/release",
"clean:app": "rm -rf ./packages/workbench-electron/app/dist",
"cp:dist": "cp -r ./packages/views/build/* ./packages/workbench-electron/app/dist",
"start:workbench": "yarn workspace workbench-electron start",
"start:views": "yarn workspace views start",
"start:views-web": "yarn workspace views start:web",
"build:views": "yarn workspace views build",
"build:views-web": "yarn workspace views build:web",
"build:workbench-electron": "yarn workspace workbench-electron build",
"build:mac": "yarn workspace workbench-electron build:mac",
"release:mac": "yarn workspace workbench-electron release:mac"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"electron"
]
},
"files": [
"packages"
],
"devDependencies": {
"@commitlint/cli": "^8.3.4",
"@commitlint/core": "^8.3.4",
"@commitlint/travis-cli": "^8.3.5",
"@ecomfe/eslint-config": "^3.2.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.1.0",
"babel-plugin-import": "^1.13.0",
"commitizen": "^4.0.3",
"eslint-plugin-babel": "^5.3.1",
"husky": "^4.0.0",
"lint-staged": "^9.2.5",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-scripts": "^4.0.1",
"typescript": "^4.0.3"
},
"lint-staged": {
"!(example|dist|output|__mocks__)/**/*.(ts|js)": [
"eslint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "git://github.com/BUPTlhuanyu/pandora-workbench"
},
"author": "lhuanyu <[email protected]>",
"license": "MIT",
"dependencies": {
"@commitlint/config-conventional": "^11.0.0",
"react-app-rewired": "^2.1.8"
}
}