-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.66 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.66 KB
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
81
82
83
84
85
86
87
88
{
"name": "lowcode-materials",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"compile": "tsc --project tsconfig.compiler.json --skipLibCheck",
"uTools": "node ./uTools.js",
"build": "npm run prod",
"prod": "node ./buildMaterials.js prod && npm run compile && npm run uTools",
"dev": "node ./buildMaterials.js dev && npm run compile && npm run uTools",
"lint": "eslint --ext .ts,.tsx,.js,.jsx materials/",
"start:dev": "cross-env NODE_ENV=dev nest start --watch",
"tsc": "tsc --noEmit --skipLibCheck"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lowcode-scaffold/lowcode-materials.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/lowcode-scaffold/lowcode-materials/issues"
},
"homepage": "https://github.com/lowcode-scaffold/lowcode-materials#readme",
"dependencies": {
"@babel/parser": "^7.22.10",
"@google/generative-ai": "^0.1.3",
"@nestjs/common": "^10.2.2",
"@nestjs/config": "^3.0.0",
"@nestjs/core": "^10.2.2",
"@nestjs/platform-express": "^10.2.2",
"ajv": "^8.12.0",
"ali-oss": "^6.21.0",
"ast-types": "^0.14.2",
"axios": "^1.5.0",
"ejs": "^3.1.9",
"execa": "^4.0.1",
"fs-extra": "^11.1.1",
"generate-schema": "^2.6.0",
"glob": "^7.1.6",
"html-entities": "^2.4.0",
"json-schema-to-typescript": "^13.1.1",
"jsonminify": "^0.4.2",
"mitt": "^3.0.1",
"mockjs": "^1.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recast": "^0.23.4",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"strip-comments": "^2.0.1",
"tar": "^7.4.3",
"ts-node": "^10.9.1",
"tunnel": "^0.0.6",
"typescript": "^5.1.3",
"typescript-json-schema": "^0.60.0",
"undici": "^6.4.0"
},
"devDependencies": {
"@electron/remote": "^2.1.2",
"@nestjs/cli": "^10.1.16",
"@nestjs/schematics": "^10.0.2",
"@types/ejs": "^3.1.3",
"@types/express": "^4.17.17",
"@types/fs-extra": "^11.0.1",
"@types/glob": "^7.1.1",
"@types/node": "^20.3.1",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/vscode": "^1.79.1",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"cross-env": "^7.0.3",
"dotenv-cli": "^7.3.0",
"electron": "^29.1.0",
"esbuild": "^0.20.2",
"eslint": "^8.47.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"module-alias": "^2.2.3",
"prettier": "^3.0.1",
"tslib": "^2.5.3",
"utools-api-types": "^4.0.0"
}
}