-
Notifications
You must be signed in to change notification settings - Fork 101
/
package.json
62 lines (62 loc) · 2.13 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
{
"name": "templates",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "run-p watch-templates dev:next",
"dev:next": "next dev",
"build": "npm run build-templates && next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write .",
"watch-templates": "nodemon",
"build-templates": "ts-node -r tsconfig-paths/register ./scripts/build-templates.ts && ts-node -r tsconfig-paths/register ./scripts/build-templates-list.ts",
"move-templates": "rm -rf ../panel/templates/* && cp -r ./templates/* ../panel/templates/",
"build-and-move-templates": "run-s build-templates move-templates",
"build-docs": "ts-node -r tsconfig-paths/register ./scripts/build-docs.ts",
"move-docs": "rm -rf ../website/docs/05-templates/* && cp -r ./docs/* ../website/docs/05-templates/",
"build-and-move-docs": "run-s build-docs move-docs",
"check-for-updates": "ts-node -r tsconfig-paths/register ./scripts/check-for-updates.ts",
"build-all": "run-s build-and-move-templates build-and-move-docs"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@rjsf/chakra-ui": "^5.21.1",
"@rjsf/core": "^5.21.1",
"@rjsf/utils": "^5.21.1",
"@rjsf/validator-ajv8": "^5.21.1",
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"chakra-react-select": "^4.9.2",
"framer-motion": "^6",
"glob": "^8.0.3",
"json-schema-to-ts": "^2.3.0",
"json-schema-to-typescript": "^11.0.2",
"lodash": "^4.17.21",
"next": "12.1.6",
"react": "18.3.1",
"react-dom": "18.3.1",
"yaml": "^2.1.1",
"zod": "^3.14.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/node": "17.0.31",
"@types/react": "18.3.8",
"@types/react-dom": "18.3.0",
"eslint": "8.14.0",
"eslint-config-next": "12.1.6",
"fs-extra": "^10.1.0",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "5.6.2"
}
}