-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
66 lines (66 loc) · 2.25 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
{
"name": "elegant-cli",
"version": "4.0.3",
"description": "Build SEO-friendly websites, super fast full-stack web applications, and much more with Elegant.",
"scripts": {
"build:elegant": "cd packages/elegant && npm install && npm run build",
"build:elegant-ui": "cd packages/elegant-ui && npm install && npm run build",
"dev": "cd packages/elegant && npm run dev",
"publish:innovators": "node scripts/publish-innovators-prerelease.ts",
"publish:patch": "node scripts/publish-patch.ts",
"publish:cms-patch": "cd ./packages/elegant-cms && node scripts/publish-elegant-cms-patch.ts",
"publish:cms-minor-version": "cd ./packages/elegant-cms && node scripts/publish-elegant-cms-minor-version.ts",
"publish:ui-patch": "cd ./packages/elegant-ui && node scripts/publish-elegant-ui-patch.ts",
"publish:ui-minor-version": "cd ./packages/elegant-ui && node scripts/publish-elegant-ui-minor-version.ts",
"test": "jest --watch --verbose ./integrations --detectOpenHandles --forceExit",
"test:ci": "jest --ci ./integrations --detectOpenHandles --forceExit && cd packages/elegant && npm run test:ci",
"test:elegant": "cd packages/elegant && npm run test --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elegantframework/elegant.git"
},
"keywords": [
"next",
"react",
"storybook",
"tailwindcss",
"jest",
"elegant",
"elegant framework",
"elegant cli",
"elegant-cli",
"tiptap",
"postgresql",
"prisma"
],
"author": "Brandon Owens",
"license": "MIT",
"bugs": {
"url": "https://github.com/elegantframework/elegant/issues"
},
"homepage": "https://github.com/elegantframework/elegant#readme",
"dependencies": {
"chalk": "^4.1.2",
"clear": "^0.1.0",
"commander": "^12.0.0",
"cross-spawn": "^7.0.3",
"figlet": "^1.5.2",
"path": "^0.12.7"
},
"bin": {
"elegant-init": "./packages/init.js"
},
"devDependencies": {
"@babel/types": "^7.24.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@types/react-test-renderer": "^18.0.7",
"child_process": "^1.0.2",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"react-test-renderer": "^18.2.0",
"shelljs": "^0.8.5",
"ts-node": "^10.9.2"
}
}