-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
47 lines (47 loc) · 1.32 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
{
"name": "codedragger",
"version": "0.0.0",
"description": "a practice of lowcode",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"preinstall": "node ./scripts/preinstall.js",
"dev:dragger-editor": "pnpm dev --filter @cdl-pkg/dragger-editor",
"dev:main-application": "pnpm dev --filter @cdl-pkg/main-application",
"build:all": "pnpm run build -r",
"format": "prettier --write '**/*.{js,json,css,tsx,ts}'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChelesteWang/CodeDragger.git"
},
"keywords": [
"lowcode",
"dragger",
"codeless"
],
"author": "ChelesteWang",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ChelesteWang/CodeDragger/issues"
},
"homepage": "https://github.com/ChelesteWang/CodeDragger#readme",
"devDependencies": {
"@changesets/cli": "^2.20.0",
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@types/node": "*",
"commitlint": "^16.0.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"chalk": "4.1.2"
}
}